summaryrefslogtreecommitdiff
path: root/sc/source/filter/qpro/biff.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-04 11:15:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-04 12:14:24 +0100
commitc8529cfc3a8f3560f8eb7bd593cd8bac985e1d5f (patch)
tree5821564c13c9032d06b11ddf0ea5aaf2b21e6d94 /sc/source/filter/qpro/biff.cxx
parentb7aee1d1ca712c720749e2b53cf0af80748d1a7e (diff)
coverity#708054 Uninitialized scalar field
Change-Id: I75e0bb3a5c0894663fbade08b88ea10efc578c63
Diffstat (limited to 'sc/source/filter/qpro/biff.cxx')
-rw-r--r--sc/source/filter/qpro/biff.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/sc/source/filter/qpro/biff.cxx b/sc/source/filter/qpro/biff.cxx
index 7ec4f9e4a3ec..333c7202ee8a 100644
--- a/sc/source/filter/qpro/biff.cxx
+++ b/sc/source/filter/qpro/biff.cxx
@@ -31,10 +31,11 @@
#include "formulacell.hxx"
#include "biff.hxx"
-ScBiffReader::ScBiffReader( SfxMedium & rMedium ) :
- mnId(0),
- mnLength(0),
- mnOffset(0)
+ScBiffReader::ScBiffReader(SfxMedium& rMedium)
+ : mnId(0)
+ , mnLength(0)
+ , mnOffset(0)
+ , mbEndOfFile(false)
{
mpStream = rMedium.GetInStream();
if( mpStream )