X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=secnet.git;a=blobdiff_plain;f=md5.c;h=69158911eff29cf3540bcae36951e17736d27c27;hp=2e0b9b8cc48df382ed3f4332f0bef4263a82ac24;hb=94ca562bb14422940ff1986ce8dfca87c222cb59;hpb=babd74ec57f6b3a6f6709d10ec725532deb3ed66 diff --git a/md5.c b/md5.c index 2e0b9b8..6915891 100644 --- a/md5.c +++ b/md5.c @@ -129,7 +129,7 @@ MD5Final(md5byte digest[16], struct MD5Context *ctx) byteSwap(ctx->buf, 4); memcpy(digest, ctx->buf, 16); - memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */ + memset(ctx, 0, sizeof *ctx); /* In case it's sensitive */ } #ifndef ASM_MD5 @@ -241,7 +241,7 @@ static void *md5_init(void) { struct MD5Context *ctx; - ctx=safe_malloc(sizeof(*ctx),"md5_init"); + NEW(ctx); MD5Init(ctx); return ctx; @@ -278,7 +278,7 @@ void md5_module(dict_t *dict) uint8_t digest[16]; int i; - st=safe_malloc(sizeof(*st),"md5_module"); + NEW(st); st->cl.description="md5"; st->cl.type=CL_HASH; st->cl.apply=NULL;