diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-31 21:17:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-01 10:38:25 +0100 |
commit | f6953937df5d92d70c59ff9f0b91042285016b23 (patch) | |
tree | 5458b6402fcb2a425be4a306a2ad6ccb7d7798d2 | |
parent | 2d737cc401a679f6850679b2c8469ba471d01fb1 (diff) |
coverity#707923 Uninitialized scalar field
Change-Id: Iab2d5829b28587640058d484ef806d9e9e8c1f96
-rw-r--r-- | i18npool/source/indexentry/indexentrysupplier_default.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/i18npool/source/indexentry/indexentrysupplier_default.cxx b/i18npool/source/indexentry/indexentrysupplier_default.cxx index 9956797c87c9..567da90bcdab 100644 --- a/i18npool/source/indexentry/indexentrysupplier_default.cxx +++ b/i18npool/source/indexentry/indexentrysupplier_default.cxx @@ -111,6 +111,7 @@ void IndexTable::init(sal_Unicode start_, sal_Unicode end_, IndexKey *keys, sal_ Index::Index(const com::sun::star::uno::Reference < com::sun::star::uno::XComponentContext >& rxContext) : table_count(0) , key_count(0) + , mkey_count(0) { collator = new CollatorImpl(rxContext); } |