summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2010-01-22 09:28:34 +0000
committerOlle Johansson <oej@edvina.net>2010-01-22 09:28:34 +0000
commit64b76fa41a19721385f9e82ef5911c5f90ca984e (patch)
tree0d0999a9e00608cefb6cb7332bb23891ceda2380
parentd6ad0f30b44687c1a90164355873787dbb4eae9f (diff)
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/trunk@242227 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index a013937d4..54410c35f 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -2379,7 +2379,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. */