dect
/
asterisk
Archived
13
0
Fork 0

This change prevents a crash from occurring if res_musiconhold.so

is unloaded and then Asterisk is stopped. The problem was that
we are not unregistering the ast_moh_destroy function at exit.

(closes issue #13761)
Reported by: eliel
Patches:
      res_musiconhold.c.patch uploaded by eliel (license 64)



git-svn-id: http://svn.digium.com/svn/asterisk/trunk@157592 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mmichelson 2008-11-18 23:59:02 +00:00
parent 1be8f9fe8f
commit 7fe747fbe1
1 changed files with 1 additions and 0 deletions

View File

@ -1672,6 +1672,7 @@ static int unload_module(void)
res |= ast_unregister_application(start_moh);
res |= ast_unregister_application(stop_moh);
ast_cli_unregister_multiple(cli_moh, sizeof(cli_moh) / sizeof(struct ast_cli_entry));
ast_unregister_atexit(ast_moh_destroy);
return res;
}