lib: grpc: initialize uninitialized member variables

fixes #9732, fixes #10578

Signed-off-by: Christian Hopps <chopps@labn.net>
This commit is contained in:
Christian Hopps 2022-02-26 07:55:32 -05:00
parent 96d434f853
commit c85ecd6405

View File

@ -1,7 +1,7 @@
// //
// Copyright (c) 2021-2022, LabN Consulting, L.L.C
// Copyright (C) 2019 NetDEF, Inc. // Copyright (C) 2019 NetDEF, Inc.
// Renato Westphal // Renato Westphal
// Copyright (c) 2021, LabN Consulting, L.L.C
// //
// This program is free software; you can redistribute it and/or modify it // 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 // under the terms of the GNU General Public License as published by the Free
@ -227,7 +227,6 @@ template <typename Q, typename S> class NewRpcState : RpcStateBase
pthread_mutex_unlock(&_tag->cmux); pthread_mutex_unlock(&_tag->cmux);
return 0; return 0;
} }
NewRpcState<Q, S> *orig;
const char *name; const char *name;
grpc::ServerContext ctx; grpc::ServerContext ctx;
@ -238,12 +237,12 @@ template <typename Q, typename S> class NewRpcState : RpcStateBase
Candidates *cdb; Candidates *cdb;
void (*callback)(NewRpcState<Q, S> *); void (*callback)(NewRpcState<Q, S> *);
reqfunc_t requestf; reqfunc_t requestf = NULL;
reqsfunc_t requestsf; reqsfunc_t requestsf = NULL;
pthread_mutex_t cmux = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t cmux = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t cond = PTHREAD_COND_INITIALIZER; pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
void *context; void *context = 0;
CallState state = CREATE; CallState state = CREATE;
}; };