From: Sterling Hughes Date: Fri, 4 Apr 2003 16:00:33 +0000 (+0000) Subject: forgot to commit this. X-Git-Tag: RELEASE_0_5~133 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=335a1c1a6d857696fca98370cef2270327fda6d2;p=php forgot to commit this. --- diff --git a/ext/curl/multi.c b/ext/curl/multi.c index 24a4df94a1..842f1920b0 100644 --- a/ext/curl/multi.c +++ b/ext/curl/multi.c @@ -221,7 +221,7 @@ PHP_FUNCTION(curl_multi_info_read) array_init(return_value); add_assoc_long(return_value, "msg", tmp_msg->msg); add_assoc_long(return_value, "result", tmp_msg->data.result); - add_assoc_resource(return_value, "handle", zend_list_id_by_pointer(tmp_msg->easy_handle, le_curl TSRMLS_CC)); + /* add_assoc_resource(return_value, "handle", zend_list_id_by_pointer(tmp_msg->easy_handle, le_curl TSRMLS_CC)); */ add_assoc_string(return_value, "whatever", (char *) tmp_msg->data.whatever, 1); } /* }}} */