Skip to content

Commit cd853e6

Browse files
committed
NIT CS
1 parent e011b83 commit cd853e6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ext/openssl/openssl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4958,8 +4958,8 @@ PHP_FUNCTION(openssl_pkey_derive)
49584958
if (keylen < 0) {
49594959
php_error_docref(NULL, E_WARNING, "keylen < 0, assuming NULL");
49604960
}
4961-
if ((pkey = php_openssl_evp_from_zval(priv_key,0,"",0,0,NULL)) == NULL
4962-
|| (peer_key = php_openssl_evp_from_zval(peer_pub_key,1,NULL,0,0,NULL)) == NULL) {
4961+
if ((pkey = php_openssl_evp_from_zval(priv_key, 0, "", 0, 0, NULL)) == NULL
4962+
|| (peer_key = php_openssl_evp_from_zval(peer_pub_key, 1, NULL, 0, 0, NULL)) == NULL) {
49634963
RETURN_FALSE;
49644964
}
49654965
EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new(pkey, NULL);

0 commit comments

Comments
 (0)