mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-11-03 20:38:59 +00:00 
			
		
		
		
	Fix segfault
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4207 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		
							
								
								
									
										4
									
								
								rtp.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								rtp.c
									
									
									
									
									
								
							@@ -493,14 +493,14 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
 | 
			
		||||
	    if (rtp->lasteventseqn <= seqno) {
 | 
			
		||||
	      f = process_rfc2833(rtp, rtp->rawdata + AST_FRIENDLY_OFFSET + hdrlen, res - hdrlen);
 | 
			
		||||
	      rtp->lasteventseqn = seqno;
 | 
			
		||||
	    }
 | 
			
		||||
	    } else f = NULL;
 | 
			
		||||
	    if (f) return f; else return &null_frame;
 | 
			
		||||
	  } else if (rtpPT.code == AST_RTP_CISCO_DTMF) {
 | 
			
		||||
	    /* It's really special -- process it the Cisco way */
 | 
			
		||||
	    if (rtp->lasteventseqn <= seqno) {
 | 
			
		||||
	      f = process_cisco_dtmf(rtp, rtp->rawdata + AST_FRIENDLY_OFFSET + hdrlen, res - hdrlen);
 | 
			
		||||
	      rtp->lasteventseqn = seqno;
 | 
			
		||||
	    }
 | 
			
		||||
	    } else f = NULL;
 | 
			
		||||
	    if (f) return f; else return &null_frame;
 | 
			
		||||
	  } else if (rtpPT.code == AST_RTP_CN) {
 | 
			
		||||
	    /* Comfort Noise */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user