From e029a0ee59eb6857517e56a357c3f3f269f546ea Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Sat, 29 Sep 2007 11:18:42 +0000 Subject: fix a few compiler warnings (mostly use of unitialized values) --- ext/openssl/xp_ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/openssl') 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); -- cgit v1.2.1