if (!strncasecmp("macro",context,5)) /* Macro names in contexts are useless for our needs */
context = ast_variable_retrieve(msg_cfg, "message","macrocontext");
- ast_config_destroy(msg_cfg);
-
if (option == 3) {
if (!res)
if (num) {
/* Dial the CID number */
res = dialout(chan, vmu, num, vmu->callback);
- if (res)
+ if (res) {
+ ast_config_destroy(msg_cfg);
return 9;
+ }
} else {
res = '2';
}
/* Want to enter a different number, can only do this if there's a dialout context for this user */
if (!ast_strlen_zero(vmu->dialout)) {
res = dialout(chan, vmu, NULL, vmu->dialout);
- if (res)
+ if (res) {
+ ast_config_destroy(msg_cfg);
return 9;
+ }
} else {
if (option_verbose > 2)
ast_verbose( VERBOSE_PREFIX_3 "Caller can not specify callback number - no dialout context available\n");
res = ast_play_and_wait(chan, "vm-sorry");
}
+ ast_config_destroy(msg_cfg);
return res;
case '*':
res = 't';
ast_verbose(VERBOSE_PREFIX_3 "No CID number available, no reply sent\n");
if (!res)
res = ast_play_and_wait(chan, "vm-nonumber");
+ ast_config_destroy(msg_cfg);
return res;
} else {
if (find_user(NULL, vmu->context, num)) {
memset(&leave_options, 0, sizeof(leave_options));
leave_options.record_gain = record_gain;
res = leave_voicemail(chan, mailbox, &leave_options);
+ ast_config_destroy(msg_cfg);
if (!res)
res = 't';
return res;
if (option_verbose > 2)
ast_verbose( VERBOSE_PREFIX_3 "No mailbox number '%s' in context '%s', no reply sent\n", num, vmu->context);
ast_play_and_wait(chan, "vm-nobox");
+ ast_config_destroy(msg_cfg);
res = 't';
return res;
}
vms->heard[msg] = 1;
res = wait_file(chan, vms, vms->fn);
}
+ ast_config_destroy(msg_cfg);
return res;
}