aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-26 18:16:19 +0000
committerjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-26 18:16:19 +0000
commit16d7e8fe066d6272f5341c6f556cce1a9b7def4f (patch)
tree642b6416fac5fda37dcd11af0c12000e52023a48 /main
parentb0fa05e2a87f957fc984ca445afd5747814a5991 (diff)
Merged revisions 243244 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r243244 | jpeeler | 2010-01-26 12:07:57 -0600 (Tue, 26 Jan 2010) | 12 lines Fix crash resulting from frames with invalid data pointers. In ast_frdup the frame data union does not get set to point to malloced memory if the datalen is zero, so make sure to handle the same case in ast_frisolate appropriately. (closes issue #16058) Reported by: atis Patches: bug16058-fix.patch uploaded by jpeeler (license 325) Tested by: atis ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@243247 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/frame.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/main/frame.c b/main/frame.c
index 338cf0388..cb78800fe 100644
--- a/main/frame.c
+++ b/main/frame.c
@@ -441,6 +441,11 @@ struct ast_frame *ast_frisolate(struct ast_frame *fr)
}
if (!(fr->mallocd & AST_MALLOCD_DATA)) {
+ if (!fr->datalen) {
+ out->data.uint32 = fr->data.uint32;
+ out->mallocd = AST_MALLOCD_HDR | AST_MALLOCD_SRC;
+ return out;
+ }
if (!(newdata = ast_malloc(fr->datalen + AST_FRIENDLY_OFFSET))) {
if (out->src != fr->src) {
ast_free((void *) out->src);