summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2001-02-20 00:43:03 +0000
committerUlf Möller <ulf@openssl.org>2001-02-20 00:43:03 +0000
commit28143c66e138b843b41280c0b9763f28553dc355 (patch)
tree1c65becb9792f2da7931476257c1d858d270e4bf /apps
parent335c4f0966eda1374cd6f7ed646b6c2adc998885 (diff)
Fix warning.
Diffstat (limited to 'apps')
-rw-r--r--apps/x509.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/x509.c b/apps/x509.c
index 3229a2c26f..2972b047a9 100644
--- a/apps/x509.c
+++ b/apps/x509.c
@@ -1032,7 +1032,7 @@ static ASN1_INTEGER *load_serial(char *CAfile, char *serialfile, int create)
MS_STATIC char buf2[1024];
ASN1_INTEGER *bs = NULL, bs2;
BIO *io = NULL;
- BIGNUM *serial;
+ BIGNUM *serial = NULL;
buf=OPENSSL_malloc( ((serialfile == NULL)
?(strlen(CAfile)+strlen(POSTFIX)+1)
:(strlen(serialfile)))+1);