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 8d9671089b01c04070d25bf65bce30d943911b3a..582f93bc152e1dd3ddc5a2786b1b3e7466c1d425 100644 |
--- a/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp |
+++ b/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp |
@@ -190,7 +190,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; |
@@ -203,7 +203,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; |