[asterisk-commits] russell: trunk r96395 - in /trunk: ./ channels/chan_iax2.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jan 3 16:46:38 CST 2008
Author: russell
Date: Thu Jan 3 16:46:37 2008
New Revision: 96395
URL: http://svn.digium.com/view/asterisk?view=rev&rev=96395
Log:
Merged revisions 96394 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r96394 | russell | 2008-01-03 16:44:22 -0600 (Thu, 03 Jan 2008) | 3 lines
Don't crash if the iax2 pvt structure has been destroyed before we get to this point
(closes issue #11672, reported by snuffy, patched by me)
........
Modified:
trunk/ (props changed)
trunk/channels/chan_iax2.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_iax2.c?view=diff&rev=96395&r1=96394&r2=96395
==============================================================================
--- trunk/channels/chan_iax2.c (original)
+++ trunk/channels/chan_iax2.c Thu Jan 3 16:46:37 2008
@@ -9053,11 +9053,11 @@
iax_frame_wrap(fr, &f);
/* If this is our most recent packet, use it as our basis for timestamping */
- if (iaxs[fr->callno]->last < fr->ts) {
+ if (iaxs[fr->callno] && iaxs[fr->callno]->last < fr->ts) {
/*iaxs[fr->callno]->last = fr->ts; (do it afterwards cos schedule/forward_delivery needs the last ts too)*/
fr->outoforder = 0;
} else {
- if (iaxdebug)
+ if (iaxdebug && iaxs[fr->callno])
ast_debug(1, "Received out of order packet... (type=%d, subclass %d, ts = %d, last = %d)\n", f.frametype, f.subclass, fr->ts, iaxs[fr->callno]->last);
fr->outoforder = -1;
}
More information about the asterisk-commits
mailing list