Skip to content

Commit

Permalink
Bluetooth: Controller: Fix coverity issue 318804
Browse files Browse the repository at this point in the history
[Coverity CID: 318804] Copy-paste error in
subsys/bluetooth/controller/ll_sw/nordic/lll/lll_central_iso.c

Fixes zephyrproject-rtos#59512.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
  • Loading branch information
cvinayak authored and carlescufi committed Jul 3, 2023
1 parent 80632b5 commit 7366dfd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ static void isr_rx(void *param)

/* Adjust nesn when flushing Rx */
/* FIXME: When Flush Timeout is implemented */
if (cis_lll->tx.bn_curr <= cis_lll->rx.bn) {
if (cis_lll->rx.bn_curr <= cis_lll->rx.bn) {
lll_flush_rx(cis_lll);
}

Expand Down

0 comments on commit 7366dfd

Please sign in to comment.