mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-19 19:52:48 +00:00
don't crash if the frame has no data, but has a src
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@37856 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);
|
memcpy(out->data, f->data, out->datalen);
|
||||||
}
|
}
|
||||||
if (srclen > 0) {
|
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 */
|
/* Must have space since we allocated for it */
|
||||||
strcpy((char *)out->src, f->src);
|
strcpy((char *)out->src, f->src);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user