mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Remove no_separation flag
This commit is contained in:
parent
e93aca7167
commit
302933daea
27 changed files with 10 additions and 50 deletions
|
@ -1385,7 +1385,6 @@ static size_t curl_write(char *data, size_t size, size_t nmemb, void *ctx)
|
|||
fci.retval = &retval;
|
||||
fci.param_count = 2;
|
||||
fci.params = argv;
|
||||
fci.no_separation = 1;
|
||||
|
||||
ch->in_callback = 1;
|
||||
error = zend_call_function(&fci, &t->fci_cache);
|
||||
|
@ -1432,7 +1431,6 @@ static int curl_fnmatch(void *ctx, const char *pattern, const char *string)
|
|||
fci.retval = &retval;
|
||||
fci.param_count = 3;
|
||||
fci.params = argv;
|
||||
fci.no_separation = 1;
|
||||
|
||||
ch->in_callback = 1;
|
||||
error = zend_call_function(&fci, &t->fci_cache);
|
||||
|
@ -1485,7 +1483,6 @@ static size_t curl_progress(void *clientp, double dltotal, double dlnow, double
|
|||
fci.retval = &retval;
|
||||
fci.param_count = 5;
|
||||
fci.params = argv;
|
||||
fci.no_separation = 1;
|
||||
|
||||
ch->in_callback = 1;
|
||||
error = zend_call_function(&fci, &t->fci_cache);
|
||||
|
@ -1541,7 +1538,6 @@ static size_t curl_read(char *data, size_t size, size_t nmemb, void *ctx)
|
|||
fci.retval = &retval;
|
||||
fci.param_count = 3;
|
||||
fci.params = argv;
|
||||
fci.no_separation = 1;
|
||||
|
||||
ch->in_callback = 1;
|
||||
error = zend_call_function(&fci, &t->fci_cache);
|
||||
|
@ -1603,7 +1599,6 @@ static size_t curl_write_header(char *data, size_t size, size_t nmemb, void *ctx
|
|||
fci.retval = &retval;
|
||||
fci.param_count = 2;
|
||||
fci.params = argv;
|
||||
fci.no_separation = 1;
|
||||
|
||||
ch->in_callback = 1;
|
||||
error = zend_call_function(&fci, &t->fci_cache);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue