X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/56668e6dca80813a2c9f03d4c02ed20e22f1061b..8d90b8b27bf086da6245030459ab3e5977313eb0:/sshpubk.c diff --git a/sshpubk.c b/sshpubk.c index b860040d..ac9e0fa7 100644 --- a/sshpubk.c +++ b/sshpubk.c @@ -67,12 +67,13 @@ static int loadrsakey_main(FILE * fp, struct RSAKey *key, int pub_only, i += 4; /* Now the serious stuff. An ordinary SSH-1 public key. */ - i += makekey(buf + i, len, key, NULL, 1); - if (i < 0) + j = makekey(buf + i, len, key, NULL, 1); + if (j < 0) goto end; /* overran */ + i += j; /* Next, the comment field. */ - j = GET_32BIT(buf + i); + j = toint(GET_32BIT(buf + i)); i += 4; if (j < 0 || len - i < j) goto end; @@ -462,7 +463,7 @@ static int read_header(FILE * fp, char *header) int len = 39; int c; - while (len > 0) { + while (1) { c = fgetc(fp); if (c == '\n' || c == '\r' || c == EOF) return 0; /* failure */ @@ -1007,6 +1008,8 @@ int ssh2_userkey_encrypted(const Filename *filename, char **commentptr) if (commentptr) *commentptr = comment; + else + sfree(comment); fclose(fp); if (!strcmp(b, "aes256-cbc"))