summaryrefslogtreecommitdiff
path: root/key.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-01-22 23:07:21 +1100
committerDamien Miller <djm@mindrot.org>2002-01-22 23:07:21 +1100
commit503761ac45c1546f211c3585f58f352f16400891 (patch)
tree1e41ec352243d0e057e957d93b4f9a5ed774a854 /key.c
parenta055c25d059ddb2dcfd200ee18d4007f1c573984 (diff)
downloadopenssh-git-503761ac45c1546f211c3585f58f352f16400891.tar.gz
- markus@cvs.openbsd.org 2001/12/25 18:49:56
[key.c] be more careful on allocation
Diffstat (limited to 'key.c')
-rw-r--r--key.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/key.c b/key.c
index 1013578e..3a0ed046 100644
--- a/key.c
+++ b/key.c
@@ -32,7 +32,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "includes.h"
-RCSID("$OpenBSD: key.c,v 1.36 2001/12/19 07:18:56 deraadt Exp $");
+RCSID("$OpenBSD: key.c,v 1.37 2001/12/25 18:49:56 markus Exp $");
#include <openssl/evp.h>
@@ -63,6 +63,8 @@ key_new(int type)
rsa = RSA_new();
rsa->n = BN_new();
rsa->e = BN_new();
+ if (rsa == NULL || rsa->n == NULL || rsa->e == NULL)
+ fatal("key_new: malloc failure");
k->rsa = rsa;
break;
case KEY_DSA:
@@ -71,6 +73,9 @@ key_new(int type)
dsa->q = BN_new();
dsa->g = BN_new();
dsa->pub_key = BN_new();
+ if (dsa == NULL || dsa->p == NULL || dsa->q == NULL ||
+ dsa->g == NULL || dsa->pub_key == NULL)
+ fatal("key_new: malloc failure");
k->dsa = dsa;
break;
case KEY_UNSPEC: