Changeset b4008a5


Ignore:
Timestamp:
2014-03-07T00:02:32Z (10 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
3e16fb8, 7b05842
Parents:
b4b8f1e
Message:

Merging compiler warning fix. Patch by Mark H Weaver <mhw@…>.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/md5.c

    rb4b8f1e rb4008a5  
    160160        ctx->buf[3] = cvt32(ctx->buf[3]);
    161161        memcpy(digest, ctx->buf, 16);
    162         memset(ctx, 0, sizeof(ctx));    /* In case it's sensitive */
     162        memset(ctx, 0, sizeof(*ctx));   /* In case it's sensitive */
    163163}
    164164
Note: See TracChangeset for help on using the changeset viewer.