Skip to content

Commit

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

Signed-off-by: Gordon Smith <[email protected]>
  • Loading branch information
GordonSmith committed Oct 12, 2023
2 parents 0ebbf24 + 8eb002e commit ff3655e
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 @@ -2275,7 +2275,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 ff3655e

Please sign in to comment.