Skip to content

Commit

Permalink
Merge pull request #17882 from ghalliday/issue30463
Browse files Browse the repository at this point in the history
HPCC-30463 Fix crash updating expiry for delayed packets

Reviewed-by: Mark Kelly [email protected]
Reviewed-By: Richard Chapman <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Oct 11, 2023
2 parents aa0dacf + 8e2e474 commit 8eb002e
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 @@ -2228,7 +2228,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 8eb002e

Please sign in to comment.