aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_authenticate.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-01 15:01:11 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-01 15:01:11 +0000
commitfc7290ff9e8fea5e3024a824754393a20e6c2297 (patch)
treeae29e52bfa4e6eb1e6281feac95d0be6808a1d0b /apps/app_authenticate.c
parentc9f65e2b7ccf5d6804c12b7141c74506cd0dc7b0 (diff)
fix warning (bug #4807)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6254 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_authenticate.c')
-rwxr-xr-xapps/app_authenticate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_authenticate.c b/apps/app_authenticate.c
index d50b5b2f2..887bf237d 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);