summaryrefslogtreecommitdiff
path: root/source3/smbd/negprot.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-05-31 01:48:59 +0000
committerJeremy Allison <jra@samba.org>2003-05-31 01:48:59 +0000
commit1fdbe30685501362fc90bdd968453f726e18c6eb (patch)
tree2a49478fb62a003e70e0eaaefe22ad9b2d254e01 /source3/smbd/negprot.c
parent974d402d6dec202109a3fb7896e52581ebb5d4ad (diff)
downloadsamba-1fdbe30685501362fc90bdd968453f726e18c6eb.tar.gz
samba-1fdbe30685501362fc90bdd968453f726e18c6eb.tar.bz2
samba-1fdbe30685501362fc90bdd968453f726e18c6eb.zip
Fixes to stop valgrind complaining about uninitialised memory when it's
copying clobbered buffer areas and doing hashes on them and sending them onto the wire. Jeremy. (This used to be commit 7dfcf714ae2e81fece489640e2341f132c9f567d)
Diffstat (limited to 'source3/smbd/negprot.c')
-rw-r--r--source3/smbd/negprot.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/smbd/negprot.c b/source3/smbd/negprot.c
index bd1b9b0d57..648801e955 100644
--- a/source3/smbd/negprot.c
+++ b/source3/smbd/negprot.c
@@ -182,6 +182,15 @@ static int negprot_spnego(char *p)
ZERO_STRUCT(guid);
safe_strcpy((char *)guid, global_myname(), sizeof(guid)-1);
+
+#ifdef DEVELOPER
+ {
+ size_t sl = strlen(guid);
+ if (sizeof(guid)-sl)
+ memset(&guid[sl], '\0', sizeof(guid)-sl);
+ }
+#endif
+
strlower((char *)guid);
#if 0