From d75867c44f03839173135575cc3df28d0faf11d0 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Wed, 4 Feb 2004 12:52:05 +0000
Subject: INTEGRATION: CWS ooo20031216 (1.10.120); FILE MERGED 2003/12/20
14:01:32 waratah 1.10.120.1: #i1858# correct some unitialised fields in code
---
sal/textenc/tcvtmb.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
(limited to 'sal/textenc')
diff --git a/sal/textenc/tcvtmb.c b/sal/textenc/tcvtmb.c
index c4c6ed12da68..20fad11dc0fe 100644
--- a/sal/textenc/tcvtmb.c
+++ b/sal/textenc/tcvtmb.c
@@ -2,9 +2,9 @@
*
* $RCSfile: tcvtmb.c,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 16:47:14 $
+ * last change: $Author: hr $ $Date: 2004-02-04 13:52:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -434,8 +434,8 @@ sal_Size ImplEUCJPToUnicode( const ImplTextConverterData* pData,
sal_Size* pSrcCvtBytes )
{
sal_uChar c;
- sal_uChar cLead;
- sal_uChar cTrail;
+ sal_uChar cLead = '\0';
+ sal_uChar cTrail = '\0';
sal_Unicode cConv;
const ImplDBCSToUniLeadTab* pLeadEntry;
const ImplDBCSToUniLeadTab* pLeadTab;
--
cgit