Skip to content
Snippets Groups Projects
Commit 7dd7291a authored by Russell Bryant's avatar Russell Bryant
Browse files

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
parent da6910c3
Branches
Tags
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment