aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-10-07 00:13:06 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-10-07 00:13:06 +0000
commitc59cfaf347e225ca8cf85c5d9ee9924a59ac4f05 (patch)
treea650fef8953d95f6752c2df580d4b1e82e38d336 /channels
parentb1119e932b1972852051c79a8d1b990d38cf6263 (diff)
Merged revisions 146970 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r146970 | twilson | 2008-10-06 19:02:19 -0500 (Mon, 06 Oct 2008) | 2 lines A blind transfer to the parking thread would cause a segfault because copy_request accesses dst->data w/o being able to tell whether it is proerly initialized ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@146972 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-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 db5adcde8..52d6bb469 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -16258,7 +16258,7 @@ static void *sip_park_thread(void *stuff)
{
struct ast_channel *transferee, *transferer; /* Chan1: The transferee, Chan2: The transferer */
struct sip_dual *d;
- struct sip_request req;
+ struct sip_request req = {0,};
int ext;
int res;