summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 12:50:18 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 12:50:18 +0000
commit83cff3133235a01c24661ac628b99d154a788e5b (patch)
tree595203a15558c9cce3e00dcf9d40343d68f9439f
parentd1041abd44fcdcf75d94609191462de810da0a5d (diff)
INTEGRATION: CWS ooo20031216 (1.2.190); FILE MERGED
2003/12/20 14:01:29 waratah 1.2.190.1: #i1858# correct some unitialised fields in code
-rw-r--r--sal/textenc/convertbig5hkscs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/textenc/convertbig5hkscs.c b/sal/textenc/convertbig5hkscs.c
index d9ec11f37..2b224efc6 100644
--- a/sal/textenc/convertbig5hkscs.c
+++ b/sal/textenc/convertbig5hkscs.c
@@ -2,9 +2,9 @@
*
* $RCSfile: convertbig5hkscs.c,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sb $ $Date: 2002-02-25 15:07:48 $
+ * last change: $Author: hr $ $Date: 2004-02-04 13:50:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -159,8 +159,8 @@ sal_Size ImplConvertBig5HkscsToUnicode(ImplTextConverterData const * pData,
{
sal_uInt32 nUnicode = 0xFFFF;
sal_Int32 nOffset = pBig5Hkscs2001RowOffsets[nRow];
- sal_uInt32 nFirst;
- sal_uInt32 nLast;
+ sal_uInt32 nFirst=0;
+ sal_uInt32 nLast=0;
if (nOffset != -1)
{
sal_uInt32 nFirstLast = pBig5Hkscs2001Data[nOffset++];