summaryrefslogtreecommitdiff
path: root/registry
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-18 09:42:00 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-18 11:12:10 +0100
commit5887aca6d1b3b078b49186f39fd3971a432669e8 (patch)
tree2a1de2f45cc9e4c90a27076fded85e58989e3063 /registry
parent640365974f84f4cc02d262bb6fb923bb278eeb69 (diff)
coverity#706034 Unintended sign extension
also coverity#706033 coverity#706032 coverity#706031 coverity#706030 coverity#706029 coverity#706028 coverity#706027 coverity#706026 coverity#706025 coverity#706024 coverity#706023 coverity#706022 coverity#706021 coverity#706020 coverity#706019 coverity#706018 coverity#706017 coverity#706016 coverity#706015 coverity#706014 coverity#706013 coverity#706012 coverity#706011 coverity#706010 coverity#706009 Change-Id: I7b85e85c21cf57c9a95d3373af97593d4c3bee8f
Diffstat (limited to 'registry')
-rw-r--r--registry/source/reflread.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/registry/source/reflread.cxx b/registry/source/reflread.cxx
index f405645f5bab..76718ea364f2 100644
--- a/registry/source/reflread.cxx
+++ b/registry/source/reflread.cxx
@@ -578,7 +578,7 @@ public:
sal_uInt16 m_numOfEntries;
sal_uInt16 m_numOfFieldEntries;
- sal_uInt16 m_FIELD_ENTRY_SIZE;
+ size_t m_FIELD_ENTRY_SIZE;
ConstantPool* m_pCP;
FieldList(const sal_uInt8* buffer, sal_uInt16 numEntries, ConstantPool* pCP)
@@ -832,7 +832,7 @@ public:
sal_uInt16 m_numOfEntries;
sal_uInt16 m_numOfMethodEntries;
sal_uInt16 m_numOfParamEntries;
- sal_uInt16 m_PARAM_ENTRY_SIZE;
+ size_t m_PARAM_ENTRY_SIZE;
sal_uInt32* m_pIndex;
ConstantPool* m_pCP;