X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_api.c;h=abc2c9beeb155a925b1b4e8dcf52568bc8ba0d86;hp=8bbb34ac785fd6cd636b664628c15e99bf84ec4f;hb=bb1f32fd5d06b9b9ace6517c177b0fe58c9ff57c;hpb=7408a11c30c6d7cf0933ebbedabf9551db598bcd diff --git a/http_api.c b/http_api.c index 8bbb34a..abc2c9b 100644 --- a/http_api.c +++ b/http_api.c @@ -85,7 +85,7 @@ STATUS _http_parse_key_list(const char *list, HashTable *items, char separator, int vallen = 0, keylen = 0, done = 0; zval array; - Z_ARRVAL(array) = items; + INIT_ZARR(array, items); if (!(val = strchr(list, '='))) { return FAILURE; @@ -164,10 +164,9 @@ STATUS _http_parse_key_list(const char *list, HashTable *items, char separator, /* }}} */ /* {{{ void http_error(long, long, char*) */ -void _http_error_ex(long type, long code, const char *format, ...) +void _http_error_ex(long type TSRMLS_DC, long code, const char *format, ...) { va_list args; - TSRMLS_FETCH(); va_start(args, format); #ifdef ZEND_ENGINE_2