From 28143c66e138b843b41280c0b9763f28553dc355 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Tue, 20 Feb 2001 00:43:03 +0000 Subject: [PATCH] Fix warning. --- apps/x509.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.25.1