diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-27 13:07:25 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-27 14:38:38 +0000 |
commit | fd7dbe5a15c3393ea9ad7c26267056743099c506 (patch) | |
tree | 202189b4e047673bad48d2f15300ed5125c6a6df /basic/source/runtime | |
parent | 81926e66d18a085687f73babcd9c29142b4a48b1 (diff) |
coverity#707651 Uninitialized scalar field
Change-Id: I6e497d60e72efd1df6c271ce6bf8d5e46ba09ea7
Diffstat (limited to 'basic/source/runtime')
-rw-r--r-- | basic/source/runtime/iosys.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx index bbdfcf91c044..5ed56b56f300 100644 --- a/basic/source/runtime/iosys.cxx +++ b/basic/source/runtime/iosys.cxx @@ -126,7 +126,13 @@ IMPL_LINK_INLINE_END( SbiInputDialog, Cancel, Window *, pWindow ) SbiStream::SbiStream() - : pStrm( 0 ) + : pStrm(0) + , nExpandOnWriteTo(0) + , nLine(0) + , nLen(0) + , nMode(0) + , nChan(0) + , nError(0) { } |