[asterisk-commits] murf: branch 1.6.1 r174438 - /branches/1.6.1/apps/app_rpt.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Feb 9 23:03:19 CST 2009


Author: murf
Date: Mon Feb  9 23:03:18 2009
New Revision: 174438

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=174438
Log:
One final fix in the 1.6.1 release only; some variables the compiler
worries "may not be initialized".


Modified:
    branches/1.6.1/apps/app_rpt.c

Modified: branches/1.6.1/apps/app_rpt.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/apps/app_rpt.c?view=diff&rev=174438&r1=174437&r2=174438
==============================================================================
--- branches/1.6.1/apps/app_rpt.c (original)
+++ branches/1.6.1/apps/app_rpt.c Mon Feb  9 23:03:18 2009
@@ -14680,7 +14680,7 @@
 
 			if(myrpt->remote){ /* Remote base ? */
 				char *loginuser, *loginlevel, *freq, *rxpl, *txpl, *modestr;
-				char offset,powerlevel,rxplon,txplon,remoteon,remmode,reportfmstuff;
+				char offset = 0, powerlevel = 0, rxplon = 0, txplon = 0, remoteon, remmode = 0, reportfmstuff;
 				char offsetc,powerlevelc;
 
 				loginuser = loginlevel = freq = rxpl = txpl = NULL;




More information about the asterisk-commits mailing list