diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-28 16:55:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-28 16:55:26 +0000 |
commit | d745ce53ceab949666e9ce683f7e07778c817702 (patch) | |
tree | f3389cc9ec7a39370e5def189548f767107084c2 /sal | |
parent | 751c750a8cec115ab9570b05464412f70ba92c4d (diff) |
cppcheck: member not initialized in ctor
Diffstat (limited to 'sal')
-rw-r--r-- | sal/rtl/source/uri.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/rtl/source/uri.cxx b/sal/rtl/source/uri.cxx index 5044df311080..928614eb32ce 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; } |