Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/candidate-9.0.x' into candidate-…
Browse files Browse the repository at this point in the history
…9.2.x

Signed-off-by: Gordon Smith <[email protected]>
  • Loading branch information
GordonSmith committed Oct 12, 2023
2 parents 00fb525 + ff3655e commit 8bdaa6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roxie/ccd/ccdqueue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2218,7 +2218,7 @@ class DelayedPacketQueue
if (tail)
{
tail->next = newEntry;
for (DelayedPacketEntry *finger = tail; finger != nullptr; finger = finger->prev)
for (DelayedPacketEntry *finger = tail; finger != nullptr;)
{
if ((int) (finger->waitExpires - expires) <= 0)
break;
Expand Down

0 comments on commit 8bdaa6b

Please sign in to comment.