1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 10:12:18 +01:00

MFH: fix output_reset_rewrite_vars() returning false

This commit is contained in:
Antony Dovgal
2005-04-03 12:20:22 +00:00
parent 0d7b574472
commit 8325a296cb
2 changed files with 2 additions and 2 deletions

View File

@@ -1059,7 +1059,7 @@ int php_url_scanner_reset_vars(TSRMLS_D)
BG(url_adapt_state_ex).form_app.len = 0;
BG(url_adapt_state_ex).url_app.len = 0;
return FAILURE;
return SUCCESS;
}
PHP_MINIT_FUNCTION(url_scanner)

View File

@@ -488,7 +488,7 @@ int php_url_scanner_reset_vars(TSRMLS_D)
BG(url_adapt_state_ex).form_app.len = 0;
BG(url_adapt_state_ex).url_app.len = 0;
return FAILURE;
return SUCCESS;
}
PHP_MINIT_FUNCTION(url_scanner)