diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 187ec0a5d1..a66ba45d8d 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -2537,8 +2537,10 @@ static int conf_exec(struct ast_channel *chan, void *data) res = conf_run(chan, cnf, confflags.flags, optargs); } } - dispose_conf(cnf); - cnf = NULL; + if (cnf) { + dispose_conf(cnf); + cnf = NULL; + } } } while (allowretry);