summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_utils.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2016-11-13 13:22:35 +0100
committerBob Weinand <bobwei9@hotmail.com>2016-11-13 13:22:35 +0100
commitef657978b24d889ab335c2c238352f5152188705 (patch)
treec21d984f5e1820f5b3b801b4e90e0958361f875e /sapi/phpdbg/phpdbg_utils.c
parentdbd504eaa9bd6e5055d589753d5e9da5db3d15ab (diff)
parentba75d4c50b973f6b85e8d6abab79d8c3aee2737a (diff)
downloadphp-git-ef657978b24d889ab335c2c238352f5152188705.tar.gz
Merge branch 'PHP-7.0' into PHP-7.1
Diffstat (limited to 'sapi/phpdbg/phpdbg_utils.c')
-rw-r--r--sapi/phpdbg/phpdbg_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_utils.c b/sapi/phpdbg/phpdbg_utils.c
index 642c1dec63..684a5a37b5 100644
--- a/sapi/phpdbg/phpdbg_utils.c
+++ b/sapi/phpdbg/phpdbg_utils.c
@@ -819,7 +819,7 @@ char *phpdbg_short_zval_print(zval *zv, int maxlen) /* {{{ */
break;
case IS_STRING: {
int i;
- zend_string *str = php_addcslashes(Z_STR_P(zv), 0, "\\\"", 2);
+ zend_string *str = php_addcslashes(Z_STR_P(zv), 0, "\\\"\n\t\0", 5);
for (i = 0; i < ZSTR_LEN(str); i++) {
if (ZSTR_VAL(str)[i] < 32) {
ZSTR_VAL(str)[i] = ' ';