diff options
author | Insu Yun <wuninsu@gmail.com> | 2016-01-12 04:21:57 +0000 |
---|---|---|
committer | Insu Yun <wuninsu@gmail.com> | 2016-01-12 04:21:57 +0000 |
commit | 35d5cd5c6e2d160952274b67d4c20e59f351dd0b (patch) | |
tree | aee69adf910304fb0c3ab25ddea6bb1d19c550da /sapi/phpdbg/phpdbg_prompt.c | |
parent | 786d9599f697abc2fae0d6458f571ce8b2d1adc2 (diff) | |
download | php-git-35d5cd5c6e2d160952274b67d4c20e59f351dd0b.tar.gz |
phpdbg: fix potential format string bug
Diffstat (limited to 'sapi/phpdbg/phpdbg_prompt.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_prompt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/phpdbg/phpdbg_prompt.c b/sapi/phpdbg/phpdbg_prompt.c index 97249765f8..796519ffdf 100644 --- a/sapi/phpdbg/phpdbg_prompt.c +++ b/sapi/phpdbg/phpdbg_prompt.c @@ -651,7 +651,7 @@ static inline void phpdbg_handle_exception(void) /* {{{ */ phpdbg_error("exception", "name=\"%s\" file=\"%s\" line=\"" ZEND_LONG_FMT "\"", "Uncaught %s in %s on line " ZEND_LONG_FMT, ZSTR_VAL(ex->ce->name), ZSTR_VAL(file), line); zend_string_release(file); - phpdbg_writeln("exceptionmsg", "msg=\"%s\"", ZSTR_VAL(msg)); + phpdbg_writeln("exceptionmsg", "msg=\"%s\"", "%s", ZSTR_VAL(msg)); zend_string_release(msg); if (EG(prev_exception)) { @@ -1627,7 +1627,7 @@ next: execute_data->call->func->type == ZEND_USER_FUNCTION) { zend_execute_ex = execute_ex; } - PHPDBG_G(vmret) = zend_vm_call_opcode_handler(execute_data); + PHPDBG_G(vmret) = zend_vm_call_opcode_handler(execute_data); zend_execute_ex = phpdbg_execute_ex; if (PHPDBG_G(vmret) != 0) { |