1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

fixed another memory leak

(This used to be commit 37aa2873e5f476a587316893b0ea3a6fbdfe746f)
This commit is contained in:
Andrew Tridgell 2001-11-27 03:54:15 +00:00
parent 4d726d0091
commit 67b3473780

View File

@ -59,7 +59,7 @@ static NTSTATUS check_guest_password(auth_serversupplied_info **server_info)
nt_status = check_password(user_info, auth_info, server_info);
free_auth_info(&auth_info);
SAFE_FREE(user_info);
free_user_info(&user_info);
return nt_status;
}