Merge "main/cdr: Allow setting properties on a finalized CDR if it is the last one" into 13

changes/03/1903/1
Matt Jordan 9 years ago committed by Gerrit Code Review
commit f42036bf6b

@ -2953,7 +2953,7 @@ int ast_cdr_setvar(const char *channel_name, const char *name, const char *value
for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
struct varshead *headp = NULL;
if (it_cdr->fn_table == &finalized_state_fn_table) {
if (it_cdr->fn_table == &finalized_state_fn_table && it_cdr->next != NULL) {
continue;
}
if (!strcasecmp(channel_name, it_cdr->party_a.snapshot->name)) {

Loading…
Cancel
Save