[asterisk-commits] russell: trunk r74324 - in /trunk: ./ res/res_musiconhold.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jul 10 11:01:27 CDT 2007


Author: russell
Date: Tue Jul 10 11:01:27 2007
New Revision: 74324

URL: http://svn.digium.com/view/asterisk?view=rev&rev=74324
Log:
Merged revisions 74323 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r74323 | russell | 2007-07-10 11:00:11 -0500 (Tue, 10 Jul 2007) | 1 line

fix an uninitialized variable
........

Modified:
    trunk/   (props changed)
    trunk/res/res_musiconhold.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/res/res_musiconhold.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_musiconhold.c?view=diff&rev=74324&r1=74323&r2=74324
==============================================================================
--- trunk/res/res_musiconhold.c (original)
+++ trunk/res/res_musiconhold.c Tue Jul 10 11:01:27 2007
@@ -950,7 +950,7 @@
 
 static int local_ast_moh_start(struct ast_channel *chan, const char *mclass, const char *interpclass)
 {
-	struct mohclass *mohclass;
+	struct mohclass *mohclass = NULL;
 
 	/* The following is the order of preference for which class to use:
 	 * 1) The channels explicitly set musicclass, which should *only* be




More information about the asterisk-commits mailing list