1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

fixed another memory leak

This commit is contained in:
Andrew Tridgell
-
parent 1976a8f875
commit 37aa2873e5

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;
}