Skip to content
Snippets Groups Projects
Commit 1635c483 authored by Jakub Pawłowski's avatar Jakub Pawłowski Committed by Automerger Merge Worker
Browse files

Merge "fix: Crash when forward stream writes over backward one" am: 0619adec

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/2019895

Change-Id: Ic87725787770d9a4f90352a26ac194feebd1e73f
parents eb0d71b0 0619adec
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,8 @@ int lc3_check_bits(const struct lc3_bits *bits)
static inline void accu_flush(
struct lc3_bits_accu *accu, struct lc3_bits_buffer *buffer)
{
int nbytes = LC3_MIN(accu->n >> 3, buffer->p_bw - buffer->p_fw);
int nbytes = LC3_MIN(accu->n >> 3,
LC3_MAX(buffer->p_bw - buffer->p_fw, 0));
accu->n -= 8 * nbytes;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment