[asterisk-commits] file: branch 1.4 r82961 -	/branches/1.4/apps/app_queue.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Tue Sep 18 18:41:03 CDT 2007
    
    
  
Author: file
Date: Tue Sep 18 18:41:02 2007
New Revision: 82961
URL: http://svn.digium.com/view/asterisk?view=rev&rev=82961
Log:
Initialize a variable to NULL to make the world happy.
Modified:
    branches/1.4/apps/app_queue.c
Modified: branches/1.4/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_queue.c?view=diff&rev=82961&r1=82960&r2=82961
==============================================================================
--- branches/1.4/apps/app_queue.c (original)
+++ branches/1.4/apps/app_queue.c Tue Sep 18 18:41:02 2007
@@ -3849,7 +3849,7 @@
 	const char *general_val = NULL;
 	char parse[80];
 	char *interface;
-	char *membername;
+	char *membername = NULL;
 	int penalty;
 	AST_DECLARE_APP_ARGS(args,
 		AST_APP_ARG(interface);
    
    
More information about the asterisk-commits
mailing list