Fix CDR crash (bug #5525 and many others)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6869 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Mark Spencer 20 years ago
parent 7deac2300a
commit f8c90f03b8

@ -170,6 +170,7 @@ struct ast_cdr *ast_cdr_dup(struct ast_cdr *cdr)
/* The varshead is unusable, volatile even, after the memcpy so we take care of that here */ /* The varshead is unusable, volatile even, after the memcpy so we take care of that here */
memset(&newcdr->varshead, 0, sizeof(newcdr->varshead)); memset(&newcdr->varshead, 0, sizeof(newcdr->varshead));
ast_cdr_copy_vars(newcdr, cdr); ast_cdr_copy_vars(newcdr, cdr);
newcdr->next = NULL;
return newcdr; return newcdr;
} }

Loading…
Cancel
Save