diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/apps/x509.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/apps/x509.c b/lib/libssl/src/apps/x509.c index bc280d2c399..7681e7e8ba5 100644 --- a/lib/libssl/src/apps/x509.c +++ b/lib/libssl/src/apps/x509.c @@ -1030,7 +1030,7 @@ static ASN1_INTEGER *load_serial(char *CAfile, char *serialfile, int create) len = ((serialfile == NULL) ?(strlen(CAfile)+strlen(POSTFIX)+1) - :(strlen(serialfile)))+1); + :(strlen(serialfile)))+1; buf=OPENSSL_malloc(len); if (buf == NULL) { BIO_printf(bio_err,"out of mem\n"); goto end; } if (serialfile == NULL) |