It is now possible for this path of execution to have the frame pointer be NULL, therefore we need to check for it before trying to access it. (issue #9836 reported by barthpbx)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@66764 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2
Joshua Colp 18 years ago
parent c0ce087e43
commit 22fe1b73cc

@ -3043,7 +3043,7 @@ static struct ast_frame *sip_rtp_read(struct ast_channel *ast, struct sip_pvt *p
return &null_frame;
if (p->owner) {
/* We already hold the channel lock */
if (f->frametype == AST_FRAME_VOICE) {
if (f && f->frametype == AST_FRAME_VOICE) {
if (f->subclass != p->owner->nativeformats) {
if (!(f->subclass & p->jointcapability)) {
ast_log(LOG_DEBUG, "Bogus frame of format '%s' received from '%s'!\n",

Loading…
Cancel
Save