[asterisk-commits] twilson: trunk r97248 - /trunk/apps/app_queue.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jan 8 15:56:57 CST 2008


Author: twilson
Date: Tue Jan  8 15:56:57 2008
New Revision: 97248

URL: http://svn.digium.com/view/asterisk?view=rev&rev=97248
Log:
Initialize new variable to NULL

Modified:
    trunk/apps/app_queue.c

Modified: trunk/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_queue.c?view=diff&rev=97248&r1=97247&r2=97248
==============================================================================
--- trunk/apps/app_queue.c (original)
+++ trunk/apps/app_queue.c Tue Jan  8 15:56:57 2008
@@ -5557,7 +5557,7 @@
 
 static char *handle_queue_add_member(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
 {
-	char *queuename, *interface, *membername = NULL, *state_interface;
+	char *queuename, *interface, *membername = NULL, *state_interface = NULL;
 	int penalty;
 
 	switch ( cmd ) {




More information about the asterisk-commits mailing list