summaryrefslogtreecommitdiff
path: root/source3/auth
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2010-03-22 13:05:29 -0700
committerJeremy Allison <jra@samba.org>2010-03-22 13:05:29 -0700
commit12f97c0576c8ec6628971aa7f86d7cbc5e304293 (patch)
treeed71ba8b4ca8330a5d28c684d1d0cb1550441148 /source3/auth
parent70f9338bf2e6081916ffe5bb7cddf50b4e958b24 (diff)
downloadsamba-12f97c0576c8ec6628971aa7f86d7cbc5e304293.tar.gz
samba-12f97c0576c8ec6628971aa7f86d7cbc5e304293.tar.bz2
samba-12f97c0576c8ec6628971aa7f86d7cbc5e304293.zip
Fix valgrind error when running under share level security. plaintext_password
is a data blob with a data pointer pointing to an allocation of length zero. Jeremy.
Diffstat (limited to 'source3/auth')
-rw-r--r--source3/auth/auth_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c
index 6ec19da61a..02eaf9d8c1 100644
--- a/source3/auth/auth_util.c
+++ b/source3/auth/auth_util.c
@@ -420,7 +420,7 @@ bool make_user_info_for_reply(struct auth_usersupplied_info **user_info,
DEBUG(5,("make_user_info_for_reply: User passwords not in encrypted "
"format.\n"));
- if (plaintext_password.data) {
+ if (plaintext_password.data && plaintext_password.length) {
unsigned char local_lm_response[24];
#ifdef DEBUG_PASSWORD
@@ -448,7 +448,7 @@ bool make_user_info_for_reply(struct auth_usersupplied_info **user_info,
local_lm_blob.data ? &local_lm_blob : NULL,
local_nt_blob.data ? &local_nt_blob : NULL,
NULL, NULL,
- plaintext_password.data ? &plaintext_password : NULL,
+ plaintext_password.data && plaintext_password.length ? &plaintext_password : NULL,
False);
data_blob_free(&local_lm_blob);