diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-11-27 04:07:57 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-11-27 04:07:57 +0000 |
commit | 32a811ce762bc9061ac71633cd299160ea955737 (patch) | |
tree | 9f4575b0c76e1513ade1a966569a826d689e4498 | |
parent | 6b120378399400d0cec126e3d4dc85bbf95d2d31 (diff) | |
download | samba-32a811ce762bc9061ac71633cd299160ea955737.tar.gz samba-32a811ce762bc9061ac71633cd299160ea955737.tar.bz2 samba-32a811ce762bc9061ac71633cd299160ea955737.zip |
fixed leak in free_user_info()
(This used to be commit 8eb4277b12b600cdbf8a5205ebc76d1d9d52f1aa)
-rw-r--r-- | source3/auth/auth_util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index b7927e970c..fed4efd36c 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -629,6 +629,7 @@ void free_user_info(auth_usersupplied_info **user_info) SAFE_FREE((*user_info)->internal_username.str); SAFE_FREE((*user_info)->client_domain.str); SAFE_FREE((*user_info)->domain.str); + SAFE_FREE((*user_info)->wksta_name.str); data_blob_free(&(*user_info)->lm_resp); data_blob_free(&(*user_info)->nt_resp); SAFE_FREE((*user_info)->interactive_password); |