Changeset 3063 for trunk/src


Ignore:
Timestamp:
Sep 30, 2017, 1:34:07 PM (8 years ago)
Author:
bird
Message:

warnings

Location:
trunk/src/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/kDep.c

    r2955 r3063  
    130130         */
    131131        while (*psz != '/' && *psz)
    132             *psz++;
     132            psz++;
    133133        chSlash = *psz;
    134134        *psz = '\0';
  • trunk/src/lib/md5.c

    r2418 r3063  
    145145    byteReverse((unsigned char *) ctx->buf, 4);
    146146    memcpy(digest, ctx->buf, 16);
    147     memset(ctx, 0, sizeof(ctx));        /* In case it's sensitive */
     147    memset(ctx, 0, sizeof(*ctx));       /* In case it's sensitive */
    148148}
    149149
Note: See TracChangeset for help on using the changeset viewer.