]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 269271 via svnmerge from
authorDavid Vossel <dvossel@digium.com>
Wed, 9 Jun 2010 15:13:55 +0000 (15:13 +0000)
committerDavid Vossel <dvossel@digium.com>
Wed, 9 Jun 2010 15:13:55 +0000 (15:13 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

........
  r269271 | dvossel | 2010-06-09 10:09:25 -0500 (Wed, 09 Jun 2010) | 15 lines

  fixes crash in moh when cachertclasses flag is used

  The result for moh_register was not verified to guarantee
  the mohclass as added to the container.

  (closes issue #16993)
  Reported by: dmitri
  Patches:
        res_musiconhold_rtclass2.patch uploaded by dmitri (license 1001)
        moh_crash2.diff uploaded by dvossel (license 671)
  Tested by: dmitri
........

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

res/res_musiconhold.c

index 8af2b76b8819465cd4717360f020479c21166b6d..e530744cd53992080d657cbf72dd424b82b9fbac 100644 (file)
@@ -1347,7 +1347,10 @@ static int local_ast_moh_start(struct ast_channel *chan, const char *mclass, con
                                 * has a pointer to a freed mohclass, so any operations involving the mohclass container would result in reading
                                 * invalid memory.
                                 */
-                               moh_register(mohclass, 0, DONT_UNREF);
+                               if (moh_register(mohclass, 0, DONT_UNREF) == -1) {
+                                       mohclass = mohclass_unref(mohclass, "unreffing mohclass failed to register");
+                                       return -1;
+                               }
                        } else {
                                /* We don't register RT moh class, so let's init it manualy */