From 49a1a33bb4f4616b20e75df541c6b6d9cd056e6f Mon Sep 17 00:00:00 2001 From: "Dubinov, Igor" Date: Mon, 24 Mar 2025 15:28:39 +0100 Subject: [PATCH] Fix for uninitialized variable --- test/ctl/ctl_api.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/ctl/ctl_api.cpp b/test/ctl/ctl_api.cpp index ff6491c169..93c059052e 100644 --- a/test/ctl/ctl_api.cpp +++ b/test/ctl/ctl_api.cpp @@ -74,6 +74,8 @@ class CtlTest : public ::testing::Test { const char *msg; }; + CtlTest() : provider(NULL), pool(NULL) {} + void SetUp() override { provider = NULL; pool = NULL;