diff options
Diffstat (limited to 'umac.c')
-rw-r--r-- | umac.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: umac.c,v 1.7 2013/07/22 05:00:17 djm Exp $ */ | 1 | /* $OpenBSD: umac.c,v 1.8 2013/11/08 00:39:15 djm Exp $ */ |
2 | /* ----------------------------------------------------------------------- | 2 | /* ----------------------------------------------------------------------- |
3 | * | 3 | * |
4 | * umac.c -- C Implementation UMAC Message Authentication | 4 | * umac.c -- C Implementation UMAC Message Authentication |
@@ -1227,7 +1227,7 @@ struct umac_ctx *umac_new(const u_char key[]) | |||
1227 | size_t bytes_to_add; | 1227 | size_t bytes_to_add; |
1228 | aes_int_key prf_key; | 1228 | aes_int_key prf_key; |
1229 | 1229 | ||
1230 | octx = ctx = xmalloc(sizeof(*ctx) + ALLOC_BOUNDARY); | 1230 | octx = ctx = xcalloc(1, sizeof(*ctx) + ALLOC_BOUNDARY); |
1231 | if (ctx) { | 1231 | if (ctx) { |
1232 | if (ALLOC_BOUNDARY) { | 1232 | if (ALLOC_BOUNDARY) { |
1233 | bytes_to_add = ALLOC_BOUNDARY - | 1233 | bytes_to_add = ALLOC_BOUNDARY - |