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=9c8711e502f30d7e1925d1f6568a13d80568741f;hpb=d4f707d369e0cd22cda43213e1a13fa292c0eb7a 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