From: Simon Tatham Date: Tue, 14 Feb 2017 21:31:12 +0000 (+0000) Subject: Fix freeing of retkey in openssh_new_read. X-Git-Tag: 0.68~31 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=b03020cab9297c53d1a65a497910ea7a988b94e7;p=PuTTY.git Fix freeing of retkey in openssh_new_read. Now it's always freed in the cleanup epilogue (unless we're returning it), rather than ad-hoc earlier in the code. That should make it more reliably freed on error paths. --- diff --git a/import.c b/import.c index 340785bd..a00406ae 100644 --- a/import.c +++ b/import.c @@ -1543,7 +1543,7 @@ struct ssh2_userkey *openssh_new_read(const Filename *filename, const char **errmsg_p) { struct openssh_new_key *key = load_openssh_new_key(filename, errmsg_p); - struct ssh2_userkey *retkey; + struct ssh2_userkey *retkey = NULL; int i; struct ssh2_userkey *retval = NULL; const char *errmsg; @@ -1552,7 +1552,7 @@ struct ssh2_userkey *openssh_new_read(const Filename *filename, unsigned checkint0, checkint1; const void *priv, *string; int privlen, stringlen, key_index; - const struct ssh_signkey *alg; + const struct ssh_signkey *alg = NULL; blob = NULL; @@ -1678,10 +1678,10 @@ struct ssh2_userkey *openssh_new_read(const Filename *filename, (const unsigned char *)thiskey); if (key_index == key->key_wanted) { retkey = snew(struct ssh2_userkey); + retkey->comment = NULL; retkey->alg = alg; retkey->data = alg->openssh_createkey(alg, &thiskey, &thiskeylen); if (!retkey->data) { - sfree(retkey); errmsg = "unable to create key data structure"; goto error; } @@ -1718,12 +1718,21 @@ struct ssh2_userkey *openssh_new_read(const Filename *filename, errmsg = NULL; /* no error */ retval = retkey; + retkey = NULL; /* prevent the free */ error: if (blob) { smemclr(blob, blobsize); sfree(blob); } + if (retkey) { + sfree(retkey->comment); + if (retkey->data) { + assert(alg); + alg->freekey(retkey->data); + } + sfree(retkey); + } smemclr(key->keyblob, key->keyblob_size); sfree(key->keyblob); smemclr(key, sizeof(*key));