Skip to content

Commit

Permalink
shared/bap: Fix wrong value used when extracting LTVs
Browse files Browse the repository at this point in the history
Fix wrong value used when extracting LTVs when generating BASE
  • Loading branch information
silviubarbulescu authored and Vudentz committed Feb 15, 2024
1 parent fb339bd commit 055a83c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/bap.c
Expand Up @@ -5991,7 +5991,7 @@ static void extract_ltv(size_t i, uint8_t l, uint8_t t, uint8_t *v,
ltv_len = l + 1;
iov_append(ext_data->result, 1, &ltv_len);
iov_append(ext_data->result, 1, &t);
iov_append(ext_data->result, l, &v);
iov_append(ext_data->result, l, v);
}
}

Expand Down

0 comments on commit 055a83c

Please sign in to comment.