Fix md5 structure clearing in previous commit

This commit is contained in:
David Schleef 2011-08-25 18:40:29 -07:00
parent 6c8d740c1a
commit 19e3918d4e
1 changed files with 1 additions and 1 deletions

View File

@ -259,12 +259,12 @@ void FLAC__MD5Final(FLAC__byte digest[16], FLAC__MD5Context *ctx)
byteSwap(ctx->buf, 4);
memcpy(digest, ctx->buf, 16);
memset(ctx, 0, sizeof(*ctx)); /* In case it's sensitive */
if(0 != ctx->internal_buf) {
free(ctx->internal_buf);
ctx->internal_buf = 0;
ctx->capacity = 0;
}
memset(ctx, 0, sizeof(*ctx)); /* In case it's sensitive */
}
/*