init thread id for Klocwork error

BZ: IMINAN-51481

Fixes: 38135184
Test: Netflix, play movies, youtube

Change-Id: I15c497aba636159c67909b6f81083e8dcadc87e4
Signed-off-by: Austin Hu <austin.hu@intel.com>
(cherry picked from commit 86df600763e90207c90b4c4e9a823ad044cc41bd)
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);
 }