- fix endless loop in http_build_url() with urls like "/.foo"
[m6w6/ext-http] / http_requestpool_object.c
index 004ab835d70b332598fb2bd7f3ceb9100eb65c9e..30bfbdea405a0e8dafd3417f8ecc6893099ddf49 100644 (file)
 
 /* $Id$ */
 
-#ifdef HAVE_CONFIG_H
-#      include "config.h"
-#endif
-
 #define HTTP_WANT_CURL
 #include "php_http.h"
 
@@ -430,7 +426,7 @@ PHP_METHOD(HttpRequestPool, current)
                                        current && obj->iterator.pos != pos++;
                                        current = zend_llist_get_next_ex(&obj->pool.handles, &lpos));
                        if (current) {
-                               RETURN_OBJECT(*current);
+                               RETURN_OBJECT(*current, 1);
                        }
                }
                RETURN_NULL();