]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 188102 via svnmerge from
authorMark Michelson <mmichelson@digium.com>
Mon, 13 Apr 2009 19:33:04 +0000 (19:33 +0000)
committerMark Michelson <mmichelson@digium.com>
Mon, 13 Apr 2009 19:33:04 +0000 (19:33 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

........
  r188102 | mmichelson | 2009-04-13 14:31:48 -0500 (Mon, 13 Apr 2009) | 5 lines

  Fix another crash related to cached realtime music on hold.

  This was another off-by-one problem caused by moh_register.
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@188104 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_musiconhold.c

index 9f84a9378cc58418734824fc9cf728a30c3a8b75..4d70b575fba978cd125c120b336565acd6362f25 100644 (file)
@@ -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");