aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/gprpp/thd_posix.cc
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-03-01 12:38:16 -0800
committerGravatar Vijay Pai <vpai@google.com>2018-03-01 13:41:07 -0800
commit756caa7c6a8d5c7466768ab9a57f9b47146ceaa0 (patch)
treea62e1c97a6a99c1c0a24735d2b6e9921ac6c414a /src/core/lib/gprpp/thd_posix.cc
parentb357f2f548884e0f1766b5b1c3b12e1aa64642cc (diff)
Minor changes and fixes
Diffstat (limited to 'src/core/lib/gprpp/thd_posix.cc')
-rw-r--r--src/core/lib/gprpp/thd_posix.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/gprpp/thd_posix.cc b/src/core/lib/gprpp/thd_posix.cc
index 28e47f1aa9..2f6c2edcae 100644
--- a/src/core/lib/gprpp/thd_posix.cc
+++ b/src/core/lib/gprpp/thd_posix.cc
@@ -165,7 +165,7 @@ class ThreadInternalsPosix
Thread::Thread(const char* thd_name, void (*thd_body)(void* arg), void* arg,
bool* success) {
- bool outcome;
+ bool outcome = false;
impl_ =
grpc_core::New<ThreadInternalsPosix>(thd_name, thd_body, arg, &outcome);
if (outcome) {