diff options
author | Antony Dovgal <tony2001@php.net> | 2006-08-30 21:51:08 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-08-30 21:51:08 +0000 |
commit | 1dd6ee3f6de30aa839ea5d6f8bc51e021a07cfc6 (patch) | |
tree | 5031b3b25324daef40606ab3f2d70ff37b25aea2 /ext/openssl/openssl.c | |
parent | 1f138e7e017bd765ab0b6c3841453e656b52f1a5 (diff) | |
download | php-git-1dd6ee3f6de30aa839ea5d6f8bc51e021a07cfc6.tar.gz |
fix segfault/leak, add test
Diffstat (limited to 'ext/openssl/openssl.c')
-rw-r--r-- | ext/openssl/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index dc22923814..4bcdeac4df 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -807,7 +807,7 @@ static X509 * php_openssl_x509_from_zval(zval ** val, int makeresource, long * r } /* force it to be a string and check if it refers to a file */ - convert_to_string_ex(val); + convert_to_string(*val); if (Z_STRLEN_PP(val) > 7 && memcmp(Z_STRVAL_PP(val), "file://", sizeof("file://") - 1) == 0) { /* read cert from the named file */ |