release-request-323db86e-b638-4d24-8eb1-d2e3bf4a9d1a-for-git_oc-mr1-release-4017779 snap-temp-L47900000064949209

Change-Id: I105551bba2b2b21fcfe419fb443fcf3e9fdb9641
diff --git a/utils/src/thread.cpp b/utils/src/thread.cpp
index 22a4398..957e9bb 100644
--- a/utils/src/thread.cpp
+++ b/utils/src/thread.cpp
@@ -23,6 +23,7 @@
 {
     r = NULL;
     created = false;
+    id = 0;
 
     pthread_mutex_init(&lock, NULL);
 }
@@ -31,6 +32,7 @@
 {
     this->r = r;
     created = false;
+    id = 0;
 
     pthread_mutex_init(&lock, NULL);
 }