From 6e464179ef5b5c4095bf24bd5aa8f800a08296ae Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Thu, 7 Mar 2013 13:09:23 +0000 Subject: [PATCH] Fixed uninitialized variable SVN revision: 2480 --- src/auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth.c b/src/auth.c index 20e18e04..c6b30ec8 100644 --- a/src/auth.c +++ b/src/auth.c @@ -237,7 +237,7 @@ int auth_verify_password(LOGBOOK * lbs, const char *user, const char *password, int auth_change_password(LOGBOOK * lbs, const char *user, const char *old_pwd, const char *new_pwd, char *error_str, int error_size) { - int status; + int status = 0; char str[256]; error_str[0] = 0;