diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-11-27 03:54:15 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-11-27 03:54:15 +0000 |
commit | 37aa2873e5f476a587316893b0ea3a6fbdfe746f (patch) | |
tree | 3d4d0e6670f55c9d15daf60593de95e7b77262e5 | |
parent | 1976a8f87544140363449a361f7c7347ef2c44f5 (diff) | |
download | samba-37aa2873e5f476a587316893b0ea3a6fbdfe746f.tar.gz samba-37aa2873e5f476a587316893b0ea3a6fbdfe746f.tar.xz samba-37aa2873e5f476a587316893b0ea3a6fbdfe746f.zip |
fixed another memory leak
-rw-r--r-- | source/smbd/sesssetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/sesssetup.c b/source/smbd/sesssetup.c index ac8ba91ff7f..f9d52e9be40 100644 --- a/source/smbd/sesssetup.c +++ b/source/smbd/sesssetup.c @@ -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; } |