| 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 45e9abda1f173907fa2bdd9d1a6ed31a535eae7e..49a1d1654ace576cf4a9e4cbad04f8d65895bc74 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,
 | 
| 
 |