From: wootak.jung Date: Wed, 3 Apr 2013 05:51:59 +0000 (+0900) Subject: Fix TDIS-1012 issue(APN setting) X-Git-Tag: 2.1b_release~5 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Ftelephony%2Ftel-plugin-imc.git;a=commitdiff_plain;h=2048ed67b977645b7552c81ff0c8ae93050120c6 Fix TDIS-1012 issue(APN setting) Defect: When APN set correct value after set incorrect value, APN setting is not working. Change-Id: Ia2a2d90ba93a36bbdd68f08c8b304bcc6fd1ef52 --- diff --git a/src/s_ps.c b/src/s_ps.c index 5e7c6a8..ebd18fa 100755 --- a/src/s_ps.c +++ b/src/s_ps.c @@ -143,9 +143,11 @@ static void on_response_undefine_context_cmd(TcorePending *p, int data_len, cons co_ps = tcore_pending_ref_core_object(p); if (resp->success) { dbg("Response Ok"); - return; + goto exit; } dbg("Response NOk"); + +exit: _unable_to_get_pending(co_ps, ps_context); return; }