diff options
author | Sascha Schumann <sas@php.net> | 2000-01-15 17:16:21 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-01-15 17:16:21 +0000 |
commit | b83739945eab529b85a2fb9caf3811a0f1e40fd1 (patch) | |
tree | 26ccee5a756b4265a072d931179da3098b6c2886 /main/output.c | |
parent | 259c05829befed42d81d2417f14eae6279eb37d2 (diff) | |
download | php-git-b83739945eab529b85a2fb9caf3811a0f1e40fd1.tar.gz |
Initialize flag correctly
Diffstat (limited to 'main/output.c')
-rw-r--r-- | main/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: |