From 7eaa15f96dba255d8219f1ed7bbbfcb5631bec72 Mon Sep 17 00:00:00 2001 From: Mark Kelly Date: Mon, 18 Dec 2023 10:13:27 -0500 Subject: [PATCH] HPCC-31027 Incorrect assignment with newExpiryTime (correcting HPCC-30992) Signed-off-by: Mark Kelly --- roxie/udplib/udptrs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roxie/udplib/udptrs.cpp b/roxie/udplib/udptrs.cpp index 1c873277dbb..e488c011324 100644 --- a/roxie/udplib/udptrs.cpp +++ b/roxie/udplib/udptrs.cpp @@ -286,7 +286,7 @@ class UdpReceiverEntry : public IUdpReceiverEntry { //requestExpiryTime 0 should only be used if there is no data to send. Ensure it is non zero otherwise. if (newExpiryTime == 0) - newExpiryTime == 1; + newExpiryTime = 1; requestExpiryTime.store(newExpiryTime); }