From 4fd66387a9ea739fc3216ea8357e8a3f59df224c Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Thu, 30 Oct 2014 12:15:27 +0100 Subject: Fix uninitialized value... --- phpdbg_bp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.1