mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
(php_execute_script) fix leak for phpinfo() images.
# maybe the activate/deactivate should be moved outside php_execute_script()?
This commit is contained in:
parent
90331b27ac
commit
44cf237a72
@ -1156,17 +1156,21 @@ PHPAPI void php_execute_script(zend_file_handle *primary_file CLS_DC ELS_DC PLS_
|
||||
if (!strcmp(SG(request_info).query_string+1, PHP_LOGO_GUID)) {
|
||||
sapi_add_header(CONTEXT_TYPE_IMAGE_GIF, sizeof(CONTEXT_TYPE_IMAGE_GIF)-1, 1);
|
||||
PHPWRITE(php_logo, sizeof(php_logo));
|
||||
zend_deactivate_modules();
|
||||
return;
|
||||
} else if (!strcmp(SG(request_info).query_string+1, PHP_EGG_LOGO_GUID)) {
|
||||
sapi_add_header(CONTEXT_TYPE_IMAGE_GIF, sizeof(CONTEXT_TYPE_IMAGE_GIF)-1, 1);
|
||||
PHPWRITE(php_egg_logo, sizeof(php_egg_logo));
|
||||
zend_deactivate_modules();
|
||||
return;
|
||||
} else if (!strcmp(SG(request_info).query_string+1, ZEND_LOGO_GUID)) {
|
||||
sapi_add_header(CONTEXT_TYPE_IMAGE_GIF, sizeof(CONTEXT_TYPE_IMAGE_GIF)-1, 1);
|
||||
PHPWRITE(zend_logo, sizeof(zend_logo));
|
||||
zend_deactivate_modules();
|
||||
return;
|
||||
} else if (!strcmp(SG(request_info).query_string+1, "PHPB8B5F2A0-3C92-11d3-A3A9-4C7B08C10000")) {
|
||||
php_print_credits(PHP_CREDITS_ALL);
|
||||
zend_deactivate_modules();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user