summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-09-08 15:46:38 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-09-08 15:46:38 +0000
commitb4d98ba6abffb1dfb22457bbfbb435293e3f40f3 (patch)
treecaf960986b9d61daf1c38bda2d4c5a2b1d4a2b01 /i18npool
parent3e23e6fdc5fffd523024e750db54804540a2e6e3 (diff)
INTEGRATION: CWS ooo20040704 (1.9.26); FILE MERGED
2004/06/30 13:10:14 waratah 1.9.26.1: #i30874# Add initial values to potentially uninitialised values
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/source/transliteration/transliteration_Ignore.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/i18npool/source/transliteration/transliteration_Ignore.cxx b/i18npool/source/transliteration/transliteration_Ignore.cxx
index 5f69f2900569..512702cc9204 100644
--- a/i18npool/source/transliteration/transliteration_Ignore.cxx
+++ b/i18npool/source/transliteration/transliteration_Ignore.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: transliteration_Ignore.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: obo $ $Date: 2004-03-17 09:04:01 $
+ * last change: $Author: rt $ $Date: 2004-09-08 16:46:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -173,7 +173,8 @@ transliteration_Ignore::folding( const OUString& inStr, sal_Int32 startPos,
const sal_Unicode * src = inStr.getStr() + startPos;
// Allocate nCount length to offset argument.
- sal_Int32 *p, position;
+ sal_Int32 *p = 0;
+ sal_Int32 position = 0;
if (useOffset) {
offset.realloc( nCount );
p = offset.getArray();