summaryrefslogtreecommitdiff
path: root/ext/openssl
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2007-09-29 11:18:42 +0000
committerNuno Lopes <nlopess@php.net>2007-09-29 11:18:42 +0000
commite029a0ee59eb6857517e56a357c3f3f269f546ea (patch)
tree0f6eceba4d11f2db4fa36299db037771cbc99f5a /ext/openssl
parentae14f6ba78e039bf7a90509e526b0867cbf3ce4a (diff)
downloadphp-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.c2
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);