aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2012-10-07 22:04:58 +0200
committerAndreas Schneider <asn@cryptomilk.org>2012-10-07 22:04:58 +0200
commitbfa568e448133501cdb496b3caea2282c7430b85 (patch)
treec83f7b53aee60112ef94027345c95fb6a4b06893 /src
parentff53664f540517a6e7c634ae9cc804d168a9e9a8 (diff)
downloadlibssh-bfa568e448133501cdb496b3caea2282c7430b85.tar.gz
libssh-bfa568e448133501cdb496b3caea2282c7430b85.tar.xz
libssh-bfa568e448133501cdb496b3caea2282c7430b85.zip
pki: Check for no memory available calling ssh_key_new().
Diffstat (limited to 'src')
-rw-r--r--src/pki.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pki.c b/src/pki.c
index de8d72b0..03af5b6e 100644
--- a/src/pki.c
+++ b/src/pki.c
@@ -876,6 +876,10 @@ int ssh_pki_generate(enum ssh_keytypes_e type, int parameter,
int rc;
ssh_key key = ssh_key_new();
+ if (key == NULL) {
+ return SSH_ERROR;
+ }
+
key->type = type;
key->type_c = ssh_key_type_to_char(type);
key->flags = SSH_KEY_FLAG_PRIVATE | SSH_KEY_FLAG_PUBLIC;