travis
[m6w6/ext-http] / php_http_negotiate.h
index 58b709386d3d6df13949e0833f87b9be269399c6..44f173589ea3369c54c87466fad1e7b9ac150472 100644 (file)
@@ -77,7 +77,7 @@ static inline HashTable *php_http_negotiate_content_type(HashTable *supported, p
                 \
                zend_hash_internal_pointer_reset((supported)); \
                if ((value = zend_hash_get_current_data((supported)))) { \
-                       RETVAL_ZVAL_FAST(value); \
+                       RETVAL_ZVAL(value, 1, 0); \
                } else { \
                        RETVAL_NULL(); \
                } \
@@ -119,7 +119,7 @@ static inline HashTable *php_http_negotiate_content_type(HashTable *supported, p
 #define PHP_HTTP_DO_NEGOTIATE(type, supported, rs_array) \
        { \
                HashTable *result; \
-               if ((result = php_http_negotiate_ ##type(supported, NULL TSRMLS_CC))) { \
+               if ((result = php_http_negotiate_ ##type(supported, NULL))) { \
                        PHP_HTTP_DO_NEGOTIATE_HANDLE_RESULT(result, supported, rs_array); \
                } else { \
                        PHP_HTTP_DO_NEGOTIATE_HANDLE_DEFAULT(supported, rs_array); \