diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-11-02 08:53:32 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-11-02 08:53:32 +0000 |
commit | 57da1391a3b443db6f07d9be2689d7812940dd29 (patch) | |
tree | fa6807f1bc5edf7b6caaa157146f191bc750699d /i18npool | |
parent | 53d7225c3984cbc1a4cab255dbbcdfeeea50ae40 (diff) |
coverity#1420537 Uninitialized scalar field
Change-Id: I974b48ddb54b954a512c3eb8949c6db0ff74c353
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/characterclassification/cclass_unicode.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/i18npool/source/characterclassification/cclass_unicode.cxx b/i18npool/source/characterclassification/cclass_unicode.cxx index 4f7ee6cfb279..a111dd3936ba 100644 --- a/i18npool/source/characterclassification/cclass_unicode.cxx +++ b/i18npool/source/characterclassification/cclass_unicode.cxx @@ -47,7 +47,8 @@ cclass_Unicode::cclass_Unicode( const uno::Reference < XComponentContext >& rxCo nContTypes( 0 ), eState( ssGetChar ), cGroupSep( ',' ), - cDecimalSep( '.' ) + cDecimalSep( '.' ), + cDecimalSepAlt( 0 ) { trans = new Transliteration_casemapping(); } |