X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/404f728b492124fe7a467a556dced35c13cbcafd..80b105717eaccb493391330a0a812be0af2a40e7:/sshpubk.c diff --git a/sshpubk.c b/sshpubk.c index fddcf95e..377be3a0 100644 --- a/sshpubk.c +++ b/sshpubk.c @@ -77,7 +77,7 @@ static int loadrsakey_main(FILE *fp, struct RSAKey *key, struct RSAAux *aux, j = GET_32BIT(buf+i); i += 4; if (len-i < j) goto end; - comment = malloc(j+1); + comment = smalloc(j+1); if (comment) { memcpy(comment, buf+i, j); comment[j] = '\0'; @@ -189,7 +189,7 @@ int saversakey(char *filename, struct RSAKey *key, struct RSAAux *aux, unsigned char buf[16384]; unsigned char keybuf[16]; struct MD5Context md5c; - char *p, *estart; + unsigned char *p, *estart; FILE *fp; /*