diff options
author | Anatol Belski <ab@php.net> | 2016-10-13 10:08:10 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-10-13 10:08:10 +0200 |
commit | afbb3b858aae68925b095668841e7a3971714c0f (patch) | |
tree | 58306f12f11557f3239c122a05a7fbe6990bead5 /sapi/phpdbg/phpdbg_prompt.c | |
parent | ff75665663045a96d6f182e24283e6bebb8537fa (diff) | |
parent | ce3e792c2c4c251fd5963a36af5ad4a9dd875085 (diff) | |
download | php-git-afbb3b858aae68925b095668841e7a3971714c0f.tar.gz |
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0:
use already exported symbol
Revert "export symbol missing by phpdbg"
Diffstat (limited to 'sapi/phpdbg/phpdbg_prompt.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_prompt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_prompt.c b/sapi/phpdbg/phpdbg_prompt.c index 367d7ef93d..36d947b57f 100644 --- a/sapi/phpdbg/phpdbg_prompt.c +++ b/sapi/phpdbg/phpdbg_prompt.c @@ -543,7 +543,7 @@ int phpdbg_compile_stdin(zend_string *code) { PHPDBG_G(exec_len) = 1; { /* remove leading ?> from source */ int i; - zend_string *source_path = zend_strpprintf(0, "-%c%p", 0, PHPDBG_G(ops)->opcodes); + zend_string *source_path = strpprintf(0, "-%c%p", 0, PHPDBG_G(ops)->opcodes); phpdbg_file_source *data = zend_hash_find_ptr(&PHPDBG_G(file_sources), source_path); dtor_func_t dtor = PHPDBG_G(file_sources).pDestructor; PHPDBG_G(file_sources).pDestructor = NULL; |