| Index: xfa/src/fxbarcode/datamatrix/BC_DataMatrixDecoder.cpp
|
| diff --git a/xfa/src/fxbarcode/datamatrix/BC_DataMatrixDecoder.cpp b/xfa/src/fxbarcode/datamatrix/BC_DataMatrixDecoder.cpp
|
| index d260c396afb8152e15b1f06e5fbeada6e1f053cc..c371b9ace890d61281b2cd5d08bcaf9d2246ec4a 100644
|
| --- a/xfa/src/fxbarcode/datamatrix/BC_DataMatrixDecoder.cpp
|
| +++ b/xfa/src/fxbarcode/datamatrix/BC_DataMatrixDecoder.cpp
|
| @@ -37,10 +37,7 @@ void CBC_DataMatrixDecoder::Init() {
|
| new CBC_ReedSolomonDecoder(CBC_ReedSolomonGF256::DataMatrixField);
|
| }
|
| CBC_DataMatrixDecoder::~CBC_DataMatrixDecoder() {
|
| - if (m_rsDecoder != NULL) {
|
| - delete m_rsDecoder;
|
| - }
|
| - m_rsDecoder = NULL;
|
| + delete m_rsDecoder;
|
| }
|
| CBC_CommonDecoderResult* CBC_DataMatrixDecoder::Decode(
|
| CBC_CommonBitMatrix* bits,
|
|
|