From: Olle Johansson Date: Fri, 22 Jan 2010 09:35:33 +0000 (+0000) Subject: Merged revisions 242227 via svnmerge from X-Git-Tag: 1.6.0.23~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d50da71b43a0974c318d5e958d0c2d0adc9512d;p=thirdparty%2Fasterisk.git Merged revisions 242227 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r242227 | oej | 2010-01-22 10:28:34 +0100 (Fre, 22 Jan 2010) | 11 lines Merged revisions 242226 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r242226 | oej | 2010-01-22 10:19:30 +0100 (Fre, 22 Jan 2010) | 3 lines Initialize notify_types to NULL ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@242230 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index e81871cce6..a2c071162c 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -1694,7 +1694,7 @@ static int ourport_tcp; /*!< The port used for TCP connections */ static int ourport_tls; /*!< The port used for TCP/TLS connections */ static struct sockaddr_in debugaddr; -static struct ast_config *notify_types; /*!< The list of manual NOTIFY types we know how to send */ +static struct ast_config *notify_types = NULL; /*!< The list of manual NOTIFY types we know how to send */ /*! some list management macros. */