From c85ecd64050faccd9796ff9e8b935c3b0868eb7b Mon Sep 17 00:00:00 2001 From: Christian Hopps Date: Sat, 26 Feb 2022 07:55:32 -0500 Subject: [PATCH] lib: grpc: initialize uninitialized member variables fixes #9732, fixes #10578 Signed-off-by: Christian Hopps --- lib/northbound_grpc.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/northbound_grpc.cpp b/lib/northbound_grpc.cpp index 69669a288e..2d9b61483b 100644 --- a/lib/northbound_grpc.cpp +++ b/lib/northbound_grpc.cpp @@ -1,7 +1,7 @@ // +// Copyright (c) 2021-2022, LabN Consulting, L.L.C // Copyright (C) 2019 NetDEF, Inc. // Renato Westphal -// Copyright (c) 2021, LabN Consulting, L.L.C // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free @@ -227,7 +227,6 @@ template class NewRpcState : RpcStateBase pthread_mutex_unlock(&_tag->cmux); return 0; } - NewRpcState *orig; const char *name; grpc::ServerContext ctx; @@ -238,12 +237,12 @@ template class NewRpcState : RpcStateBase Candidates *cdb; void (*callback)(NewRpcState *); - reqfunc_t requestf; - reqsfunc_t requestsf; + reqfunc_t requestf = NULL; + reqsfunc_t requestsf = NULL; pthread_mutex_t cmux = PTHREAD_MUTEX_INITIALIZER; pthread_cond_t cond = PTHREAD_COND_INITIALIZER; - void *context; + void *context = 0; CallState state = CREATE; };