X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_functions.c;h=470c47b4ca19128f2b5603d82d3666e3abfb1499;hp=1c8c2a2e01ea0cea71bc67c033e8c882ddcae350;hb=107576b154825ebac44f2cc08d97565a5349eca8;hpb=4771803db3e5de9f9ef64fa926a4e11f8e892d70 diff --git a/http_functions.c b/http_functions.c index 1c8c2a2..470c47b 100644 --- a/http_functions.c +++ b/http_functions.c @@ -957,8 +957,8 @@ PHP_FUNCTION(http_auth_basic_cb) PHP_FUNCTION(http_build_query) { zval *formdata; - int prefix_len = 0, arg_sep_len = 0; char *prefix = NULL, *arg_sep = INI_STR("arg_separator.output"); + int prefix_len = 0, arg_sep_len = strlen(arg_sep); phpstr *formstr = phpstr_new(); if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|ss", &formdata, &prefix, &prefix_len, &arg_sep, &arg_sep_len) != SUCCESS) {