diff options
| author | Felipe Pena <felipe@php.net> | 2008-03-12 19:35:24 +0000 |
|---|---|---|
| committer | Felipe Pena <felipe@php.net> | 2008-03-12 19:35:24 +0000 |
| commit | ba05723fd95aa2eace6ac24feaba89781d8a6ffb (patch) | |
| tree | 07d1baf127e31c614f300698321b423fbe0a811c | |
| parent | 8ae1faf51796d7e0524f65f71ab89ce8a77048d0 (diff) | |
| download | php-git-ba05723fd95aa2eace6ac24feaba89781d8a6ffb.tar.gz | |
Sync with fix for #44394
| -rw-r--r-- | ext/standard/url_scanner_ex.re | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/url_scanner_ex.re b/ext/standard/url_scanner_ex.re index 462dd05c56..fe020d9154 100644 --- a/ext/standard/url_scanner_ex.re +++ b/ext/standard/url_scanner_ex.re @@ -431,7 +431,7 @@ static void php_url_scanner_output_handler(char *output, uint output_len, char * size_t len; if (BG(url_adapt_state_ex).url_app.len != 0) { - *handled_output = url_adapt_ext(output, output_len, &len, (zend_bool) (mode & PHP_OUTPUT_HANDLER_END ? 1 : 0) TSRMLS_CC); + *handled_output = url_adapt_ext(output, output_len, &len, (zend_bool) (mode & (PHP_OUTPUT_HANDLER_END | PHP_OUTPUT_HANDLER_CONT) ? 1 : 0) TSRMLS_CC); if (sizeof(uint) < sizeof(size_t)) { if (len > UINT_MAX) len = UINT_MAX; |
