diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-25 14:00:38 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-25 14:01:19 +0000 |
commit | 18b290370da6d3256eb027985345781e42889397 (patch) | |
tree | c6f714cc84809454e3c9ec336522c42f56b9e05c /lotuswordpro | |
parent | e60a54c717bf89c8905fcbce6d244a05532f5034 (diff) |
coverity#1266516 Useless call
Change-Id: Icbf0e6ff8bad7e83c596f4e18003a06ba361b5eb
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 fe45eb07c3ac..135281abcde7 100644 --- a/lotuswordpro/source/filter/tocread.cxx +++ b/lotuswordpro/source/filter/tocread.cxx @@ -124,7 +124,7 @@ CBenTOCReader::ReadLabel(unsigned long * pTOCOffset, unsigned long * pTOCSize) return BenErr_UnknownBentoFormatVersion; pCurrLabel += 2; - UtGetIntelWord(pCurrLabel); pCurrLabel += 2; // Minor version + pCurrLabel += 2; // Minor version *pTOCOffset = UtGetIntelDWord(pCurrLabel); pCurrLabel += 4; *pTOCSize = UtGetIntelDWord(pCurrLabel); |