summaryrefslogtreecommitdiff
path: root/source4/heimdal/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2015-03-29 15:59:41 +0200
committerDavid Disseldorp <ddiss@samba.org>2015-03-30 11:04:15 +0200
commit6169ab798df7c1f765bc6ac537a9b398b039507e (patch)
tree6a75c2e00487181654c3aebd0972a664ec2f95ff /source4/heimdal/lib
parent578f2c7c7d7a38efd98e3aeb8de2c22a8ce5cfdb (diff)
downloadsamba-6169ab798df7c1f765bc6ac537a9b398b039507e.tar.gz
heimdal: Fix a warning
99% this is what was meant.... Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'source4/heimdal/lib')
-rw-r--r--source4/heimdal/lib/hcrypto/md2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/heimdal/lib/hcrypto/md2.c b/source4/heimdal/lib/hcrypto/md2.c
index 26254acee5a..b6517a63190 100644
--- a/source4/heimdal/lib/hcrypto/md2.c
+++ b/source4/heimdal/lib/hcrypto/md2.c
@@ -130,5 +130,5 @@ MD2_Final (void *res, struct md2 *m)
MD2_Update(m, pad, 16);
memcpy(res, m->state, MD2_DIGEST_LENGTH);
- memset(m, 0, sizeof(m));
+ memset(m, 0, sizeof(*m));
}