svl/source/items/cintitem.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
New commits: commit 830ea7ba994f84cfaa0e73cd8589c7c96de67324 Author: Caolán McNamara <caol...@redhat.com> Date: Tue Feb 18 10:25:39 2014 +0000 coverity#984145 Uninitialized scalar field Change-Id: I08d4de5fc4cbc56feda0f57f95ae76cd25b124e3 diff --git a/svl/source/items/cintitem.cxx b/svl/source/items/cintitem.cxx index ec155e0..de4559b 100644 --- a/svl/source/items/cintitem.cxx +++ b/svl/source/items/cintitem.cxx @@ -255,8 +255,9 @@ DBG_NAME(CntInt32Item); TYPEINIT1_AUTOFACTORY(CntInt32Item, SfxPoolItem); -CntInt32Item::CntInt32Item(sal_uInt16 which, SvStream & rStream) : - SfxPoolItem(which) +CntInt32Item::CntInt32Item(sal_uInt16 which, SvStream & rStream) + : SfxPoolItem(which) + , m_nValue(0) { DBG_CTOR(CntInt32Item, 0); //fdo#39428 SvStream no longer supports operator>>(long&)
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits