diff options
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-rw-r--r-- | sapi/phpdbg/phpdbg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index 17de15fa91..8b01acdfe2 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -272,7 +272,7 @@ static PHP_MSHUTDOWN_FUNCTION(phpdbg) /* {{{ */ static PHP_RINIT_FUNCTION(phpdbg) /* {{{ */ { /* deactivate symbol table caching to have these properly destroyed upon stack leaving (especially important for watchpoints) */ - EG(symtable_cache_limit) = EG(symtable_cache) - 1; + EG(symtable_cache_limit) = EG(symtable_cache); return SUCCESS; } /* }}} */ |