]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - sshpubk.c
Tighten up a lot of casts from unsigned to int which are read by one
[PuTTY.git] / sshpubk.c
index 4db37c2bf0917bf081789cd37dbdc6714b368d7c..72aaaa97a5384aaccdea5dc4af922005987a24b4 100644 (file)
--- 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;