[bugfix][T106][bug-view-651] In Intest, there are occasional cases where the phone call times out and reports an abnormal activation status.

Only Configure: Yes
Affected branch: master
Affected module: voice
Is it affected on both ZXIC and MTK: only ZXIC
Self-test: Yes
Doc Update: No

Change-Id: I4175b1a5394b9e63e8da32b040991d531633f8b3
diff --git a/cap/zx297520v3/src/lynq/lib/liblynq-qser-voice/lynq-qser-voice.cpp b/cap/zx297520v3/src/lynq/lib/liblynq-qser-voice/lynq-qser-voice.cpp
index dfd3448..69c3911 100755
--- a/cap/zx297520v3/src/lynq/lib/liblynq-qser-voice/lynq-qser-voice.cpp
+++ b/cap/zx297520v3/src/lynq/lib/liblynq-qser-voice/lynq-qser-voice.cpp
@@ -45,7 +45,7 @@
 void *voice_thread_recv(void *context)
 {
     int handle = 0;
-    int call_state;
+    int call_state = -1;
     int toa;
     int direction;
     char addr[64];
@@ -88,7 +88,7 @@
         }
         else
         {
-            LYERRLOG("unknow call state");
+            LYERRLOG("unknow call state %d",call_state);
             continue;
         }
         if (s_voice_cb != NULL)