Skip to content

Commit

Permalink
FIX BORKED UP backport
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldsharp committed May 15, 2024
1 parent 265b302 commit 089746a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -1265,7 +1265,6 @@ void stream_fifo_push(struct stream_fifo *fifo, struct stream *s)

fifo->tail = s;
fifo->tail->next = NULL;
atomic_fetch_add_explicit(&fifo->count, 1, memory_order_release);
max = atomic_fetch_add_explicit(&fifo->count, 1, memory_order_release);
curmax = atomic_load_explicit(&fifo->max_count, memory_order_relaxed);
if (max > curmax)
Expand Down

0 comments on commit 089746a

Please sign in to comment.