diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-07-13 21:23:42 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2011-07-13 21:24:32 +0900 |
commit | 9daf5608e41b9d6d5896752bafe0525507a8c688 (patch) | |
tree | 91de622d9573020fe64a13fa5d6f20c63e8d1746 /lotuswordpro | |
parent | 139f4852e933022607ae53ca82d19a409bb31ece (diff) |
initialize Length to suppress a compiler warning
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/tocread.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/tocread.cxx b/lotuswordpro/source/filter/tocread.cxx index ee6e5c65b7f8..84aaf24adcc6 100644 --- a/lotuswordpro/source/filter/tocread.cxx +++ b/lotuswordpro/source/filter/tocread.cxx @@ -384,7 +384,7 @@ CBenTOCReader::ReadSegment(pCBenValue pValue, BenByte * pLookAhead) UtBool Immediate = UT_FALSE; UtBool EightByteOffset = UT_FALSE; - unsigned long Offset(0), Length; + unsigned long Offset(0), Length(0); switch (*pLookAhead) { |