summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-06 11:09:19 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-06 11:26:39 +0000
commit1b47d6bd243f87794109a8921ea721112fa4b752 (patch)
treefa1e5a006fcf88d5e257708e86a370720e302293 /svl
parentc105ec2f0e9add3073b2326d0ddfacfea3cf349c (diff)
coverity#1190371 Uninitialized scalar field
Change-Id: I69d49b13e6e0df81107eb9364adecf87e3b9786c
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/int64item.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/int64item.cxx b/svl/source/items/int64item.cxx
index 34556b28e235..07ae77f70bf9 100644
--- a/svl/source/items/int64item.cxx
+++ b/svl/source/items/int64item.cxx
@@ -16,7 +16,7 @@ SfxInt64Item::SfxInt64Item( sal_uInt16 nWhich, sal_Int64 nVal ) :
}
SfxInt64Item::SfxInt64Item( sal_uInt16 nWhich, SvStream& rStream ) :
- SfxPoolItem(nWhich)
+ SfxPoolItem(nWhich), mnValue(0)
{
rStream.ReadInt64(mnValue);
}