diff options
author | tsepez <tsepez@chromium.org> | 2016-04-28 15:16:51 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-28 15:16:51 -0700 |
commit | 33a747db5c9ce18bdfaaaaea17b03ef26d14ff54 (patch) | |
tree | 9d8249844ea44f432891ffa67d7bca51bdb1f033 /xfa/fxbarcode/pdf417 | |
parent | 18713d20e080c344e0ed09e3f0ac5bacb0645fc5 (diff) | |
download | pdfium-33a747db5c9ce18bdfaaaaea17b03ef26d14ff54.tar.xz |
Replace CFX_PtrArray with typesafe CFX_ArrayTemplate, Part 5
Remove unused m_pdf417byteSegments, which was coped into from
an empty array and never again referenced.
Review-Url: https://codereview.chromium.org/1927253002
Diffstat (limited to 'xfa/fxbarcode/pdf417')
-rw-r--r-- | xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp b/xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp index 04246bd5d8..92351d0c61 100644 --- a/xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp +++ b/xfa/fxbarcode/pdf417/BC_PDF417DecodedBitStreamParser.cpp @@ -113,9 +113,8 @@ CBC_CommonDecoderResult* CBC_DecodedBitStreamPaser::decode( return NULL; } CFX_ByteArray rawBytes; - CFX_PtrArray byteSegments; CBC_CommonDecoderResult* tempCd = new CBC_CommonDecoderResult(); - tempCd->Init(rawBytes, result, byteSegments, ecLevel, e); + tempCd->Init(rawBytes, result, ecLevel, e); if (e != BCExceptionNO) { delete resultMetadata; return NULL; |