summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/umac.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssh/umac.c')
-rw-r--r--crypto/openssh/umac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/umac.c b/crypto/openssh/umac.c
index 99416a5..0c62145 100644
--- a/crypto/openssh/umac.c
+++ b/crypto/openssh/umac.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: umac.c,v 1.7 2013/07/22 05:00:17 djm Exp $ */
+/* $OpenBSD: umac.c,v 1.8 2013/11/08 00:39:15 djm Exp $ */
/* -----------------------------------------------------------------------
*
* umac.c -- C Implementation UMAC Message Authentication
@@ -1227,7 +1227,7 @@ struct umac_ctx *umac_new(const u_char key[])
size_t bytes_to_add;
aes_int_key prf_key;
- octx = ctx = xmalloc(sizeof(*ctx) + ALLOC_BOUNDARY);
+ octx = ctx = xcalloc(1, sizeof(*ctx) + ALLOC_BOUNDARY);
if (ctx) {
if (ALLOC_BOUNDARY) {
bytes_to_add = ALLOC_BOUNDARY -
OpenPOWER on IntegriCloud