diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 12:52:05 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 12:52:05 +0000 |
commit | d75867c44f03839173135575cc3df28d0faf11d0 (patch) | |
tree | c8f2815ad8e0062c3df8107bb0cb533b88ac0c75 /sal/textenc | |
parent | f00602d4bf4d288950f065cfbe22f3a3149cb6e8 (diff) |
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
Diffstat (limited to 'sal/textenc')
-rw-r--r-- | sal/textenc/tcvtmb.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; |