[asterisk-commits] irroot: branch irroot/distrotech-customers-trunk r319363 - /team/irroot/distr...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue May 17 02:22:42 CDT 2011
Author: irroot
Date: Tue May 17 02:22:39 2011
New Revision: 319363
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=319363
Log:
Check for null data in frames when processing packets
Issue: #13405
Reporter: sles
Modified:
team/irroot/distrotech-customers-trunk/res/res_fax_spandsp.c
Modified: team/irroot/distrotech-customers-trunk/res/res_fax_spandsp.c
URL: http://svnview.digium.com/svn/asterisk/team/irroot/distrotech-customers-trunk/res/res_fax_spandsp.c?view=diff&rev=319363&r1=319362&r2=319363
==============================================================================
--- team/irroot/distrotech-customers-trunk/res/res_fax_spandsp.c (original)
+++ team/irroot/distrotech-customers-trunk/res/res_fax_spandsp.c Tue May 17 02:22:39 2011
@@ -717,10 +717,10 @@
struct spandsp_pvt *p = s->tech_pvt;
/* Process a IFP packet */
- if ((f->frametype == AST_FRAME_MODEM) && (f->subclass.integer == AST_MODEM_T38)) {
+ if (f->data.ptr && (f->frametype == AST_FRAME_MODEM) && (f->subclass.integer == AST_MODEM_T38)) {
t38_core_rx_ifp_packet(p->t38_core_state, f->data.ptr, f->datalen, f->seqno);
return 1;
- } else if ((f->frametype == AST_FRAME_VOICE) && (f->subclass.format.id == AST_FORMAT_SLINEAR)) {
+ } else if (f->data.ptr && (f->frametype == AST_FRAME_VOICE) && (f->subclass.format.id == AST_FORMAT_SLINEAR)) {
t38_gateway_rx(&p->t38_gw_state, f->data.ptr, f->samples);
return 1;
}
More information about the asterisk-commits
mailing list