[asterisk-commits] file: branch 1.4 r47712 - in /branches/1.4: ./
channels/chan_local.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Wed Nov 15 15:31:17 MST 2006
Author: file
Date: Wed Nov 15 16:31:17 2006
New Revision: 47712
URL: http://svn.digium.com/view/asterisk?view=rev&rev=47712
Log:
Merged revisions 47711 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r47711 | file | 2006-11-15 17:29:30 -0500 (Wed, 15 Nov 2006) | 2 lines
Make sure that the pvt structure exists before trying to do fixup on Local channels. (issue #7937 reported by mada123, fix by alamantia with mods by me)
........
Modified:
branches/1.4/ (props changed)
branches/1.4/channels/chan_local.c
Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: branches/1.4/channels/chan_local.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_local.c?view=diff&rev=47712&r1=47711&r2=47712
==============================================================================
--- branches/1.4/channels/chan_local.c (original)
+++ branches/1.4/channels/chan_local.c Wed Nov 15 16:31:17 2006
@@ -295,6 +295,10 @@
static int local_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
{
struct local_pvt *p = newchan->tech_pvt;
+
+ if (!p)
+ return -1;
+
ast_mutex_lock(&p->lock);
if ((p->owner != oldchan) && (p->chan != oldchan)) {
More information about the asterisk-commits
mailing list