diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-10-26 20:43:49 +0100 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-10-27 00:00:16 +0100 |
commit | 3ab7734b88f1842b818526e2e3f34022c3270057 (patch) | |
tree | 5b15ca20f618c68f16b66a351f9437f2c0c2adc3 /sapi/phpdbg/phpdbg_list.c | |
parent | 69bc61de419ccd92bfa308f356b56591f7696413 (diff) | |
download | php-git-3ab7734b88f1842b818526e2e3f34022c3270057.tar.gz |
Stabilize execution, always run destructors and extended file breakpoints
Diffstat (limited to 'sapi/phpdbg/phpdbg_list.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_list.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg_list.c b/sapi/phpdbg/phpdbg_list.c index 7aa8c4f9e0..8ab4c8922a 100644 --- a/sapi/phpdbg/phpdbg_list.c +++ b/sapi/phpdbg/phpdbg_list.c @@ -278,6 +278,8 @@ zend_op_array *phpdbg_compile_file(zend_file_handle *file, int type TSRMLS_DC) { dataptr->line[line] = endptr - data.buf; dataptr = erealloc(dataptr, sizeof(phpdbg_file_source) + sizeof(uint) * line); + phpdbg_resolve_pending_file_break(filename TSRMLS_CC); + ret = PHPDBG_G(compile_file)(&fake, type TSRMLS_CC); fake.opened_path = NULL; |