summaryrefslogtreecommitdiff
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2008-01-08 21:56:57 +0000
committerTerry Wilson <twilson@digium.com>2008-01-08 21:56:57 +0000
commit12964661f2eae6c31f056a58a9138d936fb18f53 (patch)
tree658b720ae234dc0b2e55e2d6c77493467a2be8c0 /apps/app_queue.c
parentae11431f7984bb0df764ffc32c3347885d8d52ee (diff)
Initialize new variable to NULL
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@97248 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_queue.c')
-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 8e35d7da7..fc3b7e3c8 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -5557,7 +5557,7 @@ static int manager_queue_member_penalty(struct mansession *s, const struct messa
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 ) {