[asterisk-commits] mnicholson: branch irroot/asterisk-trunk-quack-queue r343046 - /team/irroot/a...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Nov 2 11:38:18 CDT 2011
Author: mnicholson
Date: Wed Nov 2 11:38:14 2011
New Revision: 343046
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=343046
Log:
set interface to NULL before using it with ast_category_browse()
Modified:
team/irroot/asterisk-trunk-quack-queue/apps/app_queue.c
Modified: team/irroot/asterisk-trunk-quack-queue/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/team/irroot/asterisk-trunk-quack-queue/apps/app_queue.c?view=diff&rev=343046&r1=343045&r2=343046
==============================================================================
--- team/irroot/asterisk-trunk-quack-queue/apps/app_queue.c (original)
+++ team/irroot/asterisk-trunk-quack-queue/apps/app_queue.c Wed Nov 2 11:38:14 2011
@@ -7162,7 +7162,7 @@
struct ast_variable *var;
struct ast_config *mcfg = NULL;
struct ast_category *mcat;
- const char *interface;
+ const char *interface = NULL;
if (!(q = ao2_t_find(queues, queuename, OBJ_KEY, "Find queue for reload"))) {
/* Make one then */
More information about the asterisk-commits
mailing list