mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	Merged revisions 37856 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r37856 | russell | 2006-07-17 20:41:47 -0400 (Mon, 17 Jul 2006) | 2 lines don't crash if the frame has no data, but has a src ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37857 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		
							
								
								
									
										2
									
								
								frame.c
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								frame.c
									
									
									
									
									
								
							| @@ -392,7 +392,7 @@ struct ast_frame *ast_frdup(struct ast_frame *f) | ||||
| 		memcpy(out->data, f->data, out->datalen);	 | ||||
| 	} | ||||
| 	if (srclen > 0) { | ||||
| 		out->src = out->data + f->datalen; | ||||
| 		out->src = buf + sizeof(*out) + AST_FRIENDLY_OFFSET + f->datalen; | ||||
| 		/* Must have space since we allocated for it */ | ||||
| 		strcpy((char *)out->src, f->src); | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user