Skip to content

Commit bd0f226

Browse files
committed
fix possible uninitialize variable
1 parent 263c470 commit bd0f226

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/openssl/openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2014,7 +2014,7 @@ PHP_FUNCTION(openssl_csr_parse)
20142014
BIO *bio_out;
20152015
BUF_MEM *bio_buf;
20162016
char buf[256];
2017-
STACK_OF(X509_EXTENSION) *exts;
2017+
STACK_OF(X509_EXTENSION) *exts = NULL;
20182018
char *crit_name = NULL;
20192019
int crit_len = 0;
20202020

0 commit comments

Comments
 (0)