diff --git a/cdr.c b/cdr.c index f65a516fa20071591495b404d375534357efaf8e..2020e09eac51aabd7572222621e2c5b8dc9b37c5 100755 --- a/cdr.c +++ b/cdr.c @@ -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 */ memset(&newcdr->varshead, 0, sizeof(newcdr->varshead)); ast_cdr_copy_vars(newcdr, cdr); + newcdr->next = NULL; return newcdr; }