]> granicus.if.org Git - php/commitdiff
clear conditional breaks in uapi
authorkrakjoe <joe.watkins@live.co.uk>
Thu, 14 Nov 2013 09:18:06 +0000 (09:18 +0000)
committerkrakjoe <joe.watkins@live.co.uk>
Thu, 14 Nov 2013 09:18:06 +0000 (09:18 +0000)
phpdbg.c
phpdbg_help.h

index 6518b85827217a2214bb636683c628ca78ea202d..961526c33b28f05d9b44c927fe183ae43c6916c3 100644 (file)
--- a/phpdbg.c
+++ b/phpdbg.c
@@ -131,6 +131,7 @@ static PHP_FUNCTION(phpdbg_clear)
     zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_SYM]);
     zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_OPLINE]);
     zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_METHOD]);
+    zend_hash_clean(&PHPDBG_G(bp)[PHPDBG_BREAK_COND]);
 } /* }}} */
 
 zend_function_entry phpdbg_user_functions[] = {
index 8cf7b1ded7718268cab63a83f2d31c745caada0f..4e15bda22484dc7ea839c1ea5afaddee6edaabab 100644 (file)
@@ -52,9 +52,9 @@ PHPDBG_HELP(list);
  * Commands
  */
 static const phpdbg_command_t phpdbg_help_commands[] = {
-       PHPDBG_HELP_D(exec,     "the execution context should be a valid phpdbg path"),
+       PHPDBG_HELP_D(exec,     "the execution context should be a valid path"),
        PHPDBG_HELP_D(compile,  "pre-compilation allows inspection of code before execution"),
-       PHPDBG_HELP_D(step,     "stepping through execution allows inspection of the opline after every opcode"),
+       PHPDBG_HELP_D(step,     "stepping through execution allows inspection of the opline as it is executed"),
        PHPDBG_HELP_D(next,     "continue executing while stepping or after breaking"),
        PHPDBG_HELP_D(run,      "execution inside the phpdbg vm allows detailed inspection and debugging"),
        PHPDBG_HELP_D(eval,     "access to eval() allows you to affect the environment during execution"),