Browse Source

HPCC-23782 Roxie udp free_slots comparison fix

Signed-off-by: Mark Kelly <mark.kelly@lexisnexisrisk.com>
Mark Kelly 5 years ago
parent
commit
34f60c7caa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roxie/udplib/udptrr.cpp

+ 1 - 1
roxie/udplib/udptrr.cpp

@@ -706,7 +706,7 @@ class CReceiveManager : implements IReceiveManager, public CInterface
         }
         else if (i >= free)
         {
-            if (udpTraceLevel)
+            if ((i > free) && (udpTraceLevel))
                 DBGLOG("UdpReceiver: ERROR: more packets in flight (%d) than slots free (%d)", i, free);  // Should never happen
             inflight = i = free-1;
         }