Skip to content

Commit

Permalink
b2b_logic: make retry list NULL terminated
Browse files Browse the repository at this point in the history
(cherry picked from commit 8a547bd)
  • Loading branch information
razvancrainea committed Dec 18, 2024
1 parent ae38e5c commit 902f205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/b2b_logic/bridging.c
Original file line number Diff line number Diff line change
Expand Up @@ -2350,7 +2350,7 @@ int b2bl_push_bridge_retry(b2bl_tuple_t *tuple)
* order they appear */
lock_get(b2bl_bridge_retry_lock);
retry->time = get_uticks();
retry->next = *b2bl_bridge_retry_head;
retry->next = NULL;
if (*b2bl_bridge_retry_last)
(*b2bl_bridge_retry_last)->next = retry;
else
Expand Down

0 comments on commit 902f205

Please sign in to comment.