summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-11-28 16:55:26 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-11-28 16:55:26 +0000
commitf21ff476e03fcbc4424533f37cbefc222d201fce (patch)
tree22db08197582dbc0aeaa2fc094b7e2881e8335ae
parent04fb68858236232a52d9c8f91dd5277c3cf9f543 (diff)
cppcheck: member not initialized in ctor
-rw-r--r--sal/rtl/source/uri.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/rtl/source/uri.cxx b/sal/rtl/source/uri.cxx
index f06a7e5a5..b27f93e39 100644
--- a/sal/rtl/source/uri.cxx
+++ b/sal/rtl/source/uri.cxx
@@ -362,7 +362,7 @@ struct Component
sal_Unicode const * pBegin;
sal_Unicode const * pEnd;
- inline Component(): pBegin(0) {}
+ inline Component(): pBegin(0), pEnd(0) {}
inline bool isPresent() const { return pBegin != 0; }