From e3f5049b7741cb84a6df1e0e1b80603e9df8d70e Mon Sep 17 00:00:00 2001 From: Jake Smith Date: Fri, 27 Oct 2023 00:03:25 +0100 Subject: [PATCH] HPCC-30682 Fix uninitialized class member in CMasterWatchdog Signed-off-by: Jake Smith --- thorlcr/master/mawatchdog.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thorlcr/master/mawatchdog.hpp b/thorlcr/master/mawatchdog.hpp index 11d3c8d9fad..2bfc31cbf79 100644 --- a/thorlcr/master/mawatchdog.hpp +++ b/thorlcr/master/mawatchdog.hpp @@ -31,7 +31,7 @@ class CMasterWatchdogBase : public CSimpleInterface, implements IThreaded PointerArray state; SocketEndpoint master; Mutex mutex; - int retrycount; + int retrycount = 0; CThreaded threaded; protected: bool stopped;