1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s3-passdb: fix uninitialized variable in local_password_change().

Guenther
This commit is contained in:
Günther Deschner 2009-05-29 18:08:02 +02:00
parent f48e39540c
commit 10eec5ebc0

View File

@ -649,7 +649,7 @@ NTSTATUS local_password_change(const char *user_name,
uint32_t rid;
NTSTATUS result;
bool user_exists;
int ret;
int ret = -1;
*pp_err_str = NULL;
*pp_msg_str = NULL;