Merge pull request #10804 from LabNConsulting/chopps/coverity-1

lib: grpc: fix covevrity warnings
This commit is contained in:
Donald Sharp 2022-03-16 14:29:18 -04:00 committed by GitHub
commit b89c8bdc10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -223,7 +223,7 @@ class RpcStateBase
pthread_mutex_t cmux = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
CallState state = CREATE;
CallState entered_state;
CallState entered_state = CREATE;
public:
const char *name;
@ -1153,7 +1153,9 @@ static void *grpc_pthread_start(void *arg)
std::unique_ptr<grpc::Server> server = builder.BuildAndStart();
s_server = server.get();
pthread_mutex_lock(&s_server_lock); // Make coverity happy
grpc_running = true;
pthread_mutex_unlock(&s_server_lock); // Make coverity happy
/* Schedule unary RPC handlers */
REQUEST_NEWRPC(GetCapabilities, NULL);