summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2016-10-12 22:54:32 +0200
committerBob Weinand <bobwei9@hotmail.com>2016-10-12 22:54:32 +0200
commitfe49fd7daddd740d84601504fe55dbc33c858d4c (patch)
treec72391a581e8a9e7e9efc84d5b966136490e32a3 /sapi/phpdbg/phpdbg.c
parentfe378c27cc61c07189b32c2348a6a4306823c50e (diff)
downloadphp-git-fe49fd7daddd740d84601504fe55dbc33c858d4c.tar.gz
Update NEWS
Also add missing include.inc test file
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-rw-r--r--sapi/phpdbg/phpdbg.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c
index 308aab6431..fda8962568 100644
--- a/sapi/phpdbg/phpdbg.c
+++ b/sapi/phpdbg/phpdbg.c
@@ -2040,6 +2040,12 @@ phpdbg_out:
zend_objects_store_mark_destructed(&EG(objects_store));
}
+ if (PHPDBG_G(exec) && !memcmp("-", PHPDBG_G(exec), 2)) { /* i.e. execution context has been read from stdin - back it up */
+ phpdbg_file_source *data = zend_hash_str_find_ptr(&PHPDBG_G(file_sources), PHPDBG_G(exec), PHPDBG_G(exec_len));
+ backup_phpdbg_compile = zend_string_alloc(data->len + 2, 1);
+ sprintf(ZSTR_VAL(backup_phpdbg_compile), "?>%.*s", (int) data->len, data->buf);
+ }
+
/* backup globals when cleaning */
if ((cleaning > 0 || remote) && !quit_immediately) {
settings = calloc(1, sizeof(zend_phpdbg_globals));
@@ -2099,12 +2105,6 @@ phpdbg_out:
wrapper->wops->stream_opener = PHPDBG_G(orig_url_wrap_php);
}
- if (PHPDBG_G(exec) && !memcmp("-", PHPDBG_G(exec), 2)) { /* i.e. execution context has been read from stdin - back it up */
- phpdbg_file_source *data = zend_hash_str_find_ptr(&PHPDBG_G(file_sources), PHPDBG_G(exec), PHPDBG_G(exec_len));
- backup_phpdbg_compile = zend_string_alloc(data->len + 2, 1);
- sprintf(ZSTR_VAL(backup_phpdbg_compile), "?>%.*s", (int) data->len, data->buf);
- }
-
zend_try {
php_module_shutdown();
} zend_end_try();