From: Christian Hopps Date: Sat, 26 Feb 2022 12:55:32 +0000 (-0500) Subject: lib: grpc: initialize uninitialized member variables X-Git-Tag: pim6-testing-20220430~259^2~2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=c85ecd64050faccd9796ff9e8b935c3b0868eb7b;p=matthieu%2Ffrr.git lib: grpc: initialize uninitialized member variables fixes #9732, fixes #10578 Signed-off-by: Christian Hopps --- 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; };