From b83739945eab529b85a2fb9caf3811a0f1e40fd1 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Sat, 15 Jan 2000 17:16:21 +0000 Subject: [PATCH] Initialize flag correctly --- ext/standard/output.c | 2 +- main/output.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/standard/output.c b/ext/standard/output.c index 1679a4491f..17c7193dbe 100644 --- a/ext/standard/output.c +++ b/ext/standard/output.c @@ -396,7 +396,7 @@ PHP_FUNCTION(ob_get_contents) PHP_FUNCTION(ob_implicit_flush) { zval **zv_flag; - int flag; + int flag = 0; switch(ZEND_NUM_ARGS()) { case 0: diff --git a/main/output.c b/main/output.c index 1679a4491f..17c7193dbe 100644 --- a/main/output.c +++ b/main/output.c @@ -396,7 +396,7 @@ PHP_FUNCTION(ob_get_contents) PHP_FUNCTION(ob_implicit_flush) { zval **zv_flag; - int flag; + int flag = 0; switch(ZEND_NUM_ARGS()) { case 0: -- 2.50.1