X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=blobdiff_plain;f=ircd%2Fircd_md5.c;h=d328bb915a1997b6260df0d5dc254113240cd7a0;hp=3d770ba3e31bb601ca4216e90b146e2b79a29616;hb=e894de73de8e7846934ecdf4d7cc3a14d5635ce6;hpb=c3727b053aa20cecf3984cc0c9c23b0140edf52c diff --git a/ircd/ircd_md5.c b/ircd/ircd_md5.c index 3d770ba..d328bb9 100644 --- a/ircd/ircd_md5.c +++ b/ircd/ircd_md5.c @@ -154,7 +154,7 @@ void MD5Final(unsigned char digest[16], struct MD5Context *ctx) MD5Transform(ctx->buf, (uint32 *) ctx->in); byteReverse((unsigned char *) 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