| Index: xfa/fxbarcode/common/BC_CommonDecoderResult.cpp
 | 
| diff --git a/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp b/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp
 | 
| index 45aff1cae11f4107c0efb9bdb266510c738fa3ee..ee131e53599839984886ef2f4dca4c35d1d42c9a 100644
 | 
| --- a/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp
 | 
| +++ b/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp
 | 
| @@ -40,7 +40,7 @@ void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes,
 | 
|    m_text = text;
 | 
|    m_byteSegments.Copy(byteSegments);
 | 
|    m_ecLevel = ecLevel;
 | 
| -  m_other = NULL;
 | 
| +  m_other = nullptr;
 | 
|  }
 | 
|  void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes,
 | 
|                                     const CFX_ByteString& text,
 | 
| @@ -53,7 +53,7 @@ void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes,
 | 
|    m_rawBytes.Copy(rawBytes);
 | 
|    m_text = text;
 | 
|    m_pdf417ecLevel = ecLevel;
 | 
| -  m_other = NULL;
 | 
| +  m_other = nullptr;
 | 
|  }
 | 
|  void CBC_CommonDecoderResult::setOther(CBC_PDF417ResultMetadata* other) {
 | 
|    m_other = other;
 | 
| 
 |