diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 12:51:46 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 12:51:46 +0000 |
commit | f00602d4bf4d288950f065cfbe22f3a3149cb6e8 (patch) | |
tree | e8e32d5e01193099a4b7fb4a206748929327aea8 /sal/textenc | |
parent | ce2aa5709592b4688512993db50e042a0c2e1731 (diff) |
INTEGRATION: CWS ooo20031216 (1.1.198); FILE MERGED
2003/12/20 14:01:31 waratah 1.1.198.1: #i1858# correct some unitialised fields in code
Diffstat (limited to 'sal/textenc')
-rw-r--r-- | sal/textenc/convertiso2022kr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/textenc/convertiso2022kr.c b/sal/textenc/convertiso2022kr.c index 097073e606f1..e73a9207d5a2 100644 --- a/sal/textenc/convertiso2022kr.c +++ b/sal/textenc/convertiso2022kr.c @@ -2,9 +2,9 @@ * * $RCSfile: convertiso2022kr.c,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: sb $ $Date: 2001-11-23 09:42:42 $ + * last change: $Author: hr $ $Date: 2004-02-04 13:51:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -146,7 +146,7 @@ sal_Size ImplConvertIso2022KrToUnicode(ImplTextConverterData const * pData, m_pKsX1001ToUnicodeData; ImplIso2022KrToUnicodeState eState = IMPL_ISO_2022_KR_TO_UNICODE_STATE_ASCII; - sal_uInt32 nRow; + sal_uInt32 nRow = 0; sal_uInt32 nInfo = 0; sal_Size nConverted = 0; sal_Unicode * pDestBufPtr = pDestBuf; |