aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-18 23:41:02 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-18 23:41:02 +0000
commit8e10f344cdccea4b09b60947f6f3a857ac3ef36c (patch)
tree4f0ba520e8b2c8c672b36e713013e545654d999e /apps
parent9b6b0fcaf68d28d87aaa8f2d2dccb52dc23228e4 (diff)
Initialize a variable to NULL to make the world happy.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@82961 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index fe2bd4987..a5fe870ea 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -3849,7 +3849,7 @@ static int reload_queues(void)
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);