aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_musiconhold.c
diff options
context:
space:
mode:
Diffstat (limited to 'res/res_musiconhold.c')
-rw-r--r--res/res_musiconhold.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c
index 9f84a9378..4d70b575f 100644
--- a/res/res_musiconhold.c
+++ b/res/res_musiconhold.c
@@ -1062,7 +1062,9 @@ static int moh_register(struct mohclass *moh, int reload, int unref)
if (!mohclass->delete) {
ast_log(LOG_WARNING, "Music on Hold class '%s' already exists\n", moh->name);
mohclass = mohclass_unref(mohclass, "unreffing mohclass we just found by name");
- moh = mohclass_unref(moh, "unreffing potential new moh class (it is a duplicate)");
+ if (unref) {
+ moh = mohclass_unref(moh, "unreffing potential new moh class (it is a duplicate)");
+ }
return -1;
}
mohclass = mohclass_unref(mohclass, "Unreffing mohclass we just found by name");