diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 502cb94f1b..7a394f20dd 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -2546,8 +2546,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);