X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=sshpubk.c;h=ac9e0fa7e11e20bbbe1293aa2fa45dc12279b070;hb=1472aa2a265dfbfe7225729862ea21b5fb2da22f;hp=4db37c2bf0917bf081789cd37dbdc6714b368d7c;hpb=85300e0b15d6245f02bfe177289cde1a9babaeb9;p=PuTTY.git diff --git a/sshpubk.c b/sshpubk.c index 4db37c2b..ac9e0fa7 100644 --- a/sshpubk.c +++ b/sshpubk.c @@ -73,7 +73,7 @@ static int loadrsakey_main(FILE * fp, struct RSAKey *key, int pub_only, 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; @@ -463,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 */ @@ -1008,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"))