summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2014-10-30 12:15:27 +0100
committerBob Weinand <bobwei9@hotmail.com>2014-10-30 12:15:27 +0100
commit4fd66387a9ea739fc3216ea8357e8a3f59df224c (patch)
treec03de28d07fb54f9d6d1e5faea2784732d97529f
parent6545a5c234de93cfa15611ccad4f97d8fade038c (diff)
downloadphp-git-4fd66387a9ea739fc3216ea8357e8a3f59df224c.tar.gz
Fix uninitialized value...
-rw-r--r--phpdbg_bp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpdbg_bp.c b/phpdbg_bp.c
index 33824d4fec..85dc12a3e5 100644
--- a/phpdbg_bp.c
+++ b/phpdbg_bp.c
@@ -240,7 +240,7 @@ PHPDBG_API void phpdbg_set_breakpoint_file(const char *path, long line_num TSRML
php_stream_statbuf ssb;
char realpath[MAXPATHLEN];
const char *original_path = path;
- zend_bool pending;
+ zend_bool pending = 0;
HashTable *broken, *file_breaks = &PHPDBG_G(bp)[PHPDBG_BREAK_FILE];
phpdbg_breakfile_t new_break;