| Index: xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp
|
| diff --git a/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp b/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp
|
| index b2e978c6504d9e00eca5593ec7b444db9d446006..71513c39bea35fab5e32c8961fa771f8c1a0e125 100644
|
| --- a/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp
|
| +++ b/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp
|
| @@ -189,7 +189,7 @@ CFX_ByteString CBC_OnedCode128Reader::DecodeRow(int32_t rowNumber,
|
| codeSet = CODE_CODE_C;
|
| break;
|
| default:
|
| - if (startPatternInfo != NULL) {
|
| + if (startPatternInfo) {
|
| startPatternInfo->RemoveAll();
|
| delete startPatternInfo;
|
| startPatternInfo = NULL;
|
| @@ -202,7 +202,7 @@ CFX_ByteString CBC_OnedCode128Reader::DecodeRow(int32_t rowNumber,
|
| CFX_ByteString result;
|
| int32_t lastStart = (*startPatternInfo)[0];
|
| int32_t nextStart = (*startPatternInfo)[1];
|
| - if (startPatternInfo != NULL) {
|
| + if (startPatternInfo) {
|
| startPatternInfo->RemoveAll();
|
| delete startPatternInfo;
|
| startPatternInfo = NULL;
|
|
|