| Index: xfa/fxbarcode/pdf417/BC_PDF417.cpp
|
| diff --git a/xfa/fxbarcode/pdf417/BC_PDF417.cpp b/xfa/fxbarcode/pdf417/BC_PDF417.cpp
|
| index 9d827acff657b2b58a5bbcac16a71a7c742e6ee6..9b8d0c149cb66ec2f5185fa67dc6eeca68f80e5a 100644
|
| --- a/xfa/fxbarcode/pdf417/BC_PDF417.cpp
|
| +++ b/xfa/fxbarcode/pdf417/BC_PDF417.cpp
|
| @@ -21,6 +21,8 @@
|
| */
|
|
|
| #include "xfa/fxbarcode/pdf417/BC_PDF417.h"
|
| +
|
| +#include "third_party/base/ptr_util.h"
|
| #include "xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h"
|
| #include "xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.h"
|
| #include "xfa/fxbarcode/pdf417/BC_PDF417Compaction.h"
|
| @@ -432,7 +434,7 @@ void CBC_PDF417::generateBarcodeLogic(CFX_WideString msg,
|
| dataCodewords, errorCorrectionLevel, e);
|
| BC_EXCEPTION_CHECK_ReturnVoid(e);
|
| CFX_WideString fullCodewords = dataCodewords + ec;
|
| - m_barcodeMatrix.reset(new CBC_BarcodeMatrix(rows, cols));
|
| + m_barcodeMatrix = pdfium::MakeUnique<CBC_BarcodeMatrix>(rows, cols);
|
| encodeLowLevel(fullCodewords, cols, rows, errorCorrectionLevel,
|
| m_barcodeMatrix.get());
|
| }
|
|
|