mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
fix memory errors
This commit is contained in:
parent
9b30877d56
commit
a582d2793d
5 changed files with 63 additions and 40 deletions
4
phpdbg.h
4
phpdbg.h
|
@ -96,6 +96,8 @@
|
|||
#define PHPDBG_IN_LEAVE (1<<15)
|
||||
#define PHPDBG_SEEK_MASK (PHPDBG_IN_UNTIL|PHPDBG_IN_FINISH|PHPDBG_IN_LEAVE)
|
||||
|
||||
#define PHPDBG_IS_REGISTERED (1<<16)
|
||||
|
||||
#ifndef _WIN32
|
||||
# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_COLOURED)
|
||||
#else
|
||||
|
@ -115,7 +117,7 @@ ZEND_BEGIN_MODULE_GLOBALS(phpdbg)
|
|||
int bp_count; /* breakpoint count */
|
||||
int vmret; /* return from last opcode handler execution */
|
||||
phpdbg_command_t *lcmd; /* last command */
|
||||
phpdbg_param_t lparam; /* last param */
|
||||
phpdbg_param_t lparam; /* last param */
|
||||
FILE *oplog; /* opline log */
|
||||
HashTable seek; /* seek oplines */
|
||||
zend_ulong flags; /* phpdbg flags */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue