[Libreoffice-commits] .: cppuhelper/source
Stephan Bergmann
sbergman at redhat.com
Thu Jan 31 10:24:41 PST 2013
cppuhelper/source/typedescriptionprovider.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 6ec2470a03c389a5f65cdd5d3648763e2868dd5a
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Thu Jan 31 19:24:18 2013 +0100
warning C4701: potentially uninitialized local variable
Change-Id: I6c24bf51acc0d014ede2f36e17e52cef21753d41
diff --git a/cppuhelper/source/typedescriptionprovider.cxx b/cppuhelper/source/typedescriptionprovider.cxx
index ef9a0e3..adacfee 100644
--- a/cppuhelper/source/typedescriptionprovider.cxx
+++ b/cppuhelper/source/typedescriptionprovider.cxx
@@ -2102,7 +2102,7 @@ void Enumeration::proceed() {
sal_uInt32 off = positions_.top().position->data.get();
int v = file_->read8(off);
bool recurse;
- bool cgroup;
+ bool cgroup = bool();
if (v == 0) {
recurse = true;
cgroup = false;
More information about the Libreoffice-commits
mailing list