We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 213ad54 + 6724d5d commit 5628afbCopy full SHA for 5628afb
NEWS
@@ -32,6 +32,9 @@ PHP NEWS
32
. Fixed bug #81226 (Integer overflow behavior is different with JIT
33
enabled). (Dmitry)
34
35
+- OpenSSL:
36
+ . Fixed bug #81327 (Error build openssl extension on php 7.4.22). (cmb)
37
+
38
- PDO_ODBC:
39
. Fixed bug #81252 (PDO_ODBC doesn't account for SQL_NO_TOTAL). (cmb)
40
ext/openssl/openssl.c
@@ -3236,7 +3236,7 @@ PHP_FUNCTION(openssl_csr_sign)
3236
goto cleanup;
3237
}
3238
3239
-#if PHP_OPENSSL_API_VERSION >= 0x10100
+#if PHP_OPENSSL_API_VERSION >= 0x10100 && !defined (LIBRESSL_VERSION_NUMBER)
3240
ASN1_INTEGER_set_int64(X509_get_serialNumber(new_cert), serial);
3241
#else
3242
ASN1_INTEGER_set(X509_get_serialNumber(new_cert), serial);
0 commit comments