diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-23 11:15:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-23 14:16:08 +0100 |
commit | 7fd719f9ad0698daa10ccb6b65cfcc9c8d0c2d3c (patch) | |
tree | 728d8ef228ca2d99596ecd374921364474da954f /sal | |
parent | 127eeaa09f8ef744bedf366b6f66e01d23c9e7da (diff) |
coverity#1079279 Uninitialized scalar field
Change-Id: I8b9ac5da3a7c137edec3688cc712079685039c26
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/osl/file/osl_File.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sal/qa/osl/file/osl_File.cxx b/sal/qa/osl/file/osl_File.cxx index b416987c5eb3..b49778a845c1 100644 --- a/sal/qa/osl/file/osl_File.cxx +++ b/sal/qa/osl/file/osl_File.cxx @@ -3238,7 +3238,13 @@ namespace osl_File sal_uInt64 nCount_write; public: - remove() :nError1(FileBase::E_None),nError2(FileBase::E_None) {} + remove() + : nError1(FileBase::E_None) + , nError2(FileBase::E_None) + , nCount_write(0) + { + } + // initialization void setUp() SAL_OVERRIDE { |