X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/c1edfd081692be519fdc5a0b767192596fdbe960..f7aa4b367eaf2c1e928f97263bcf4da74680aff3:/ssharcf.c diff --git a/ssharcf.c b/ssharcf.c index 2381d887..06f235c5 100644 --- a/ssharcf.c +++ b/ssharcf.c @@ -19,7 +19,7 @@ static void arcfour_block(void *handle, unsigned char *blk, int len) s = ctx->s; i = ctx->i; j = ctx->j; - for (k = 0; k < len; k++) { + for (k = 0; (int)k < len; k++) { i = (i + 1) & 0xff; j = (j + s[i]) & 0xff; tmp = s[i]; s[i] = s[j]; s[j] = tmp; @@ -75,7 +75,7 @@ static void arcfour_stir(ArcfourContext *ctx) unsigned char *junk = snewn(1536, unsigned char); memset(junk, 0, 1536); arcfour_block(ctx, junk, 1536); - memset(junk, 0, 1536); + smemclr(junk, 1536); sfree(junk); }