X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/56668e6dca80813a2c9f03d4c02ed20e22f1061b..e7ca473e61abe08456d2cfc7eed9e118c950e884:/sshpubk.c diff --git a/sshpubk.c b/sshpubk.c index b860040d..4db37c2b 100644 --- a/sshpubk.c +++ b/sshpubk.c @@ -67,9 +67,10 @@ 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);