summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_cmd.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2015-08-04 01:22:04 +0200
committerBob Weinand <bobwei9@hotmail.com>2015-08-04 01:22:04 +0200
commitd0ad621906dcf2137119c85f2cfb5361c245a06f (patch)
tree3c0b422f5fca325d56905b3f34b1d5009332f401 /sapi/phpdbg/phpdbg_cmd.c
parentd8fe645db444e54fcc8b2555c08a5021c17ca2d3 (diff)
downloadphp-git-d0ad621906dcf2137119c85f2cfb5361c245a06f.tar.gz
Fix further leaks
Diffstat (limited to 'sapi/phpdbg/phpdbg_cmd.c')
-rw-r--r--sapi/phpdbg/phpdbg_cmd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg_cmd.c b/sapi/phpdbg/phpdbg_cmd.c
index 71a27f5dec..a50b340e7d 100644
--- a/sapi/phpdbg/phpdbg_cmd.c
+++ b/sapi/phpdbg/phpdbg_cmd.c
@@ -396,6 +396,10 @@ PHPDBG_API void phpdbg_stack_free(phpdbg_param_t *stack) {
case NUMERIC_FUNCTION_PARAM:
case STR_PARAM:
case OP_PARAM:
+ case EVAL_PARAM:
+ case SHELL_PARAM:
+ case COND_PARAM:
+ case RUN_PARAM:
if (remove->str) {
efree(remove->str);
}