diff options
Diffstat (limited to 'src/usr.bin/openssl/rsautl.c')
-rw-r--r-- | src/usr.bin/openssl/rsautl.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/rsautl.c b/src/usr.bin/openssl/rsautl.c index 95776d250b..8ce3c0e27c 100644 --- a/src/usr.bin/openssl/rsautl.c +++ b/src/usr.bin/openssl/rsautl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rsautl.c,v 1.3 2014/08/28 14:25:48 jsing Exp $ */ | 1 | /* $OpenBSD: rsautl.c,v 1.4 2015/01/03 03:03:39 lteo Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2000. | 3 | * project 2000. |
4 | */ | 4 | */ |
@@ -248,7 +248,15 @@ rsautl_main(int argc, char **argv) | |||
248 | keysize = RSA_size(rsa); | 248 | keysize = RSA_size(rsa); |
249 | 249 | ||
250 | rsa_in = reallocarray(NULL, keysize, 2); | 250 | rsa_in = reallocarray(NULL, keysize, 2); |
251 | if (rsa_in == NULL) { | ||
252 | BIO_printf(bio_err, "Error allocating memory for input data\n"); | ||
253 | exit(1); | ||
254 | } | ||
251 | rsa_out = malloc(keysize); | 255 | rsa_out = malloc(keysize); |
256 | if (rsa_out == NULL) { | ||
257 | BIO_printf(bio_err, "Error allocating memory for output data\n"); | ||
258 | exit(1); | ||
259 | } | ||
252 | 260 | ||
253 | /* Read the input data */ | 261 | /* Read the input data */ |
254 | rsa_inlen = BIO_read(in, rsa_in, keysize * 2); | 262 | rsa_inlen = BIO_read(in, rsa_in, keysize * 2); |