From 2de369e3717c2bf6d536649c9d8bd64726b6baf0 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 14 Mar 2014 15:52:18 +0000 Subject: coverity#708255 Uninitialized pointer field Change-Id: Ic7fad54a0e39d007668e3fd3e2a857f9f9956d7d --- svl/source/items/style.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx index b83e7733cb8d..11a365fb3f5f 100644 --- a/svl/source/items/style.cxx +++ b/svl/source/items/style.cxx @@ -399,6 +399,8 @@ struct DoesStyleMatchStyleSheetPredicate SAL_FINAL : public svl::StyleSheetPredi SfxStyleSheetIterator::SfxStyleSheetIterator(SfxStyleSheetBasePool *pBase, SfxStyleFamily eFam, sal_uInt16 n) + : pAktStyle(NULL) + , nAktPosition(0) { pBasePool=pBase; nSearchFamily=eFam; -- cgit