summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_bp.c
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2014-10-30 18:19:48 +0100
committerFerenc Kovacs <tyrael@php.net>2014-10-30 18:19:48 +0100
commit12fba83c488843393db8dd04112927e498dc5cf2 (patch)
tree463a439b685de89d4e63a79f0204dbef09fe181c /sapi/phpdbg/phpdbg_bp.c
parente6874a9b419db82dcfefa0a260fb289577b414b6 (diff)
parent067852ca615bd083e821a08dbc21c21e9d46306f (diff)
downloadphp-git-12fba83c488843393db8dd04112927e498dc5cf2.tar.gz
Merge branch 'PHP-5.6'
* PHP-5.6: don't try to send in the test results until we restored qa.php.net Fix uninitialized value... Don't treat warnings as failures in the junit output
Diffstat (limited to 'sapi/phpdbg/phpdbg_bp.c')
-rw-r--r--sapi/phpdbg/phpdbg_bp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_bp.c b/sapi/phpdbg/phpdbg_bp.c
index 311171f72c..cd40510c79 100644
--- a/sapi/phpdbg/phpdbg_bp.c
+++ b/sapi/phpdbg/phpdbg_bp.c
@@ -227,7 +227,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;