From: Kinsey Moore Date: Wed, 27 Mar 2013 19:50:19 +0000 (+0000) Subject: Address uninitialized conditional that valgrind found X-Git-Tag: 1.8.22.0-rc1~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1bf3009218176cefaf622231b41c1be4c4e936c6;p=thirdparty%2Fasterisk.git Address uninitialized conditional that valgrind found git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@384162 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 41dbfc2731..b3d745ff67 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -23438,7 +23438,7 @@ static int handle_request_invite(struct sip_pvt *p, struct sip_request *req, int /* Session-Timers */ if ((p->sipoptions & SIP_OPT_TIMER)) { - enum st_refresher_param st_ref_param; + enum st_refresher_param st_ref_param = SESSION_TIMER_REFRESHER_PARAM_UNKNOWN; /* The UAC has requested session-timers for this session. Negotiate the session refresh interval and who will be the refresher */