- Timestamp:
- Sep 30, 2017, 1:34:07 PM (8 years ago)
- Location:
- trunk/src/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/kDep.c
r2955 r3063 130 130 */ 131 131 while (*psz != '/' && *psz) 132 *psz++;132 psz++; 133 133 chSlash = *psz; 134 134 *psz = '\0'; -
trunk/src/lib/md5.c
r2418 r3063 145 145 byteReverse((unsigned char *) ctx->buf, 4); 146 146 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 */ 148 148 } 149 149
Note:
See TracChangeset
for help on using the changeset viewer.