From: Wootak Jung Date: Fri, 13 Aug 2021 00:13:09 +0000 (+0900) Subject: Fix the initial value of call-id X-Git-Tag: submit/tizen/20210813.013653^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_6.5;p=platform%2Fcore%2Ftelephony%2Flibtcore.git Fix the initial value of call-id Change-Id: I958c61fe01a35176372da6ad81b20df1bf92b11f Signed-off-by: Wootak Jung --- diff --git a/src/core_object/co_call.c b/src/core_object/co_call.c index 20702d0..0007d1b 100644 --- a/src/core_object/co_call.c +++ b/src/core_object/co_call.c @@ -523,7 +523,7 @@ CallObject *tcore_call_object_new(CoreObject *o) g_free(co); return NULL; } - co->id = -1; + co->id = 0; po->cobjs = g_slist_append(po->cobjs, co);