Skip to content

Commit

Permalink
b2b_logic: make retry list NULL terminated
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea committed Dec 18, 2024
1 parent f1e3750 commit 8a547bd
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 @@ -2452,7 +2452,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 8a547bd

Please sign in to comment.