https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r55949 | file | 2007-02-21 15:16:34 -0500 (Wed, 21 Feb 2007) | 2 lines
Only dispose of the conference if one was created.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@55950
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
res = conf_run(chan, cnf, confflags.flags, optargs);
}
}
- dispose_conf(cnf);
- cnf = NULL;
+ if (cnf) {
+ dispose_conf(cnf);
+ cnf = NULL;
+ }
}
} while (allowretry);