From 11a1ecabdbd75237d64da3a92d96592d18d6d713 Mon Sep 17 00:00:00 2001
From: Russell Bryant <russell@russellbryant.com>
Date: Mon, 1 Aug 2005 15:01:11 +0000
Subject: [PATCH] fix warning (bug #4807)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6254 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 apps/app_authenticate.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/app_authenticate.c b/apps/app_authenticate.c
index d50b5b2f22..887bf237d4 100755
--- a/apps/app_authenticate.c
+++ b/apps/app_authenticate.c
@@ -120,7 +120,7 @@ static int auth_exec(struct ast_channel *chan, void *data)
 				if (f) {
 					char buf[256] = "";
 					char md5passwd[33] = "";
-					char *md5secret;
+					char *md5secret = NULL;
 
 					while (!feof(f)) {
 						fgets(buf, sizeof(buf), f);
-- 
GitLab