diff options
author | Nuno Lopes <nlopess@php.net> | 2007-09-29 11:18:42 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2007-09-29 11:18:42 +0000 |
commit | e029a0ee59eb6857517e56a357c3f3f269f546ea (patch) | |
tree | 0f6eceba4d11f2db4fa36299db037771cbc99f5a /ext/openssl | |
parent | ae14f6ba78e039bf7a90509e526b0867cbf3ce4a (diff) | |
download | php-git-e029a0ee59eb6857517e56a357c3f3f269f546ea.tar.gz |
fix a few compiler warnings (mostly use of unitialized values)
Diffstat (limited to 'ext/openssl')
-rw-r--r-- | ext/openssl/xp_ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/xp_ssl.c b/ext/openssl/xp_ssl.c index 842b9e547d..3e276c4f97 100644 --- a/ext/openssl/xp_ssl.c +++ b/ext/openssl/xp_ssl.c @@ -490,8 +490,8 @@ static inline int php_openssl_enable_crypto(php_stream *stream, zend_list_insert(mycert, php_openssl_get_x509_list_id())); add_next_index_zval(arr, zcert); - } efree(zcert); + } } else { ZVAL_NULL(arr); |