[svn-commits] seanbright: branch 1.8 r302414 - /branches/1.8/channels/chan_sip.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Wed Jan 19 09:45:23 CST 2011
Author: seanbright
Date: Wed Jan 19 09:45:17 2011
New Revision: 302414
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=302414
Log:
Initialize an uninitialied variable.
(closes issue #18640)
Reported by: jcovert
Patches:
chan_sip.c.patch uploaded by jcovert (license 551)
Modified:
branches/1.8/channels/chan_sip.c
Modified: branches/1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_sip.c?view=diff&rev=302414&r1=302413&r2=302414
==============================================================================
--- branches/1.8/channels/chan_sip.c (original)
+++ branches/1.8/channels/chan_sip.c Wed Jan 19 09:45:17 2011
@@ -12978,7 +12978,7 @@
char *firstcuri = NULL;
int start = 0;
int wildcard_found = 0;
- int single_binding_found;
+ int single_binding_found = 0;
ast_copy_string(contact, __get_header(req, "Contact", &start), sizeof(contact));
More information about the svn-commits
mailing list