From 6702beaf3d8ff050773d525f1852fd86eb5fcfa7 Mon Sep 17 00:00:00 2001 From: Donat Zenichev Date: Fri, 7 Mar 2025 10:59:59 +0100 Subject: [PATCH] MT#59962 Coverity Scan: Uninitialized pointer field (reg_agent) Remove `uac_auth_f` from `RegistrationAgentFactory`, not used. Fixes: Uninitialized pointer field (UNINIT_CTOR). uninit_member: Non-static class member uac_auth_f is not initialized in this constructor nor in any functions that it calls. Change-Id: I3e8d0703d8bd7226369248bd87c1449f97e7ac6a --- apps/reg_agent/RegistrationAgent.h | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/reg_agent/RegistrationAgent.h b/apps/reg_agent/RegistrationAgent.h index ce0b9ab6..5032b129 100644 --- a/apps/reg_agent/RegistrationAgent.h +++ b/apps/reg_agent/RegistrationAgent.h @@ -64,7 +64,6 @@ class RegThread : public AmThread { class RegistrationAgentFactory: public AmSessionFactory { RegThread dialer; - AmSessionEventHandlerFactory* uac_auth_f; public: RegistrationAgentFactory(const string& _app_name);