diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-01-24 13:27:17 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-01-24 13:29:02 +0200 |
commit | c1760a241b3f0362338d09460ac7dd2e1f2b25aa (patch) | |
tree | f7344b88399ec8708788fc76639c4817ab7fda24 | |
parent | ab3f74fbea0337b006230a04f215d95a15ab254a (diff) |
WaE: 'bVal' may be used uninitialized in this function
Seen in the MacOSX-Intel_1-built_no-moz_on_10.6.8 tinderbox build log,
not in an own build.
Change-Id: I1b5c87d3c1876821981d8f8a7b089b81659e5c7b
-rw-r--r-- | xmloff/source/chart/SchXMLTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/chart/SchXMLTools.cxx b/xmloff/source/chart/SchXMLTools.cxx index 2e469a4659f1..5752fad35afa 100644 --- a/xmloff/source/chart/SchXMLTools.cxx +++ b/xmloff/source/chart/SchXMLTools.cxx @@ -383,7 +383,7 @@ Reference< chart2::data::XDataSequence > CreateDataSequence( { try { - sal_Bool bVal; + sal_Bool bVal = sal_False; uno::Any any = xPropSet->getPropertyValue("UseInternalDataProvider"); if (any >>= bVal) bUseInternal = static_cast<bool>(bVal); |