| Index: xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.cpp
|
| diff --git a/xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.cpp b/xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.cpp
|
| index 14a87d60a22a8be7dbdda4dff67d0cd82aa7bb06..f90e9eb62f5ffab6c6b6b2a4e862e95b68ea25a9 100644
|
| --- a/xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.cpp
|
| +++ b/xfa/src/fxbarcode/pdf417/BC_PDF417DetectionResultRowIndicatorColumn.cpp
|
| @@ -40,7 +40,7 @@ CBC_DetectionResultRowIndicatorColumn::
|
| void CBC_DetectionResultRowIndicatorColumn::setRowNumbers() {
|
| for (int32_t i = 0; i < m_codewords->GetSize(); i++) {
|
| CBC_Codeword* codeword = (CBC_Codeword*)m_codewords->GetAt(i);
|
| - if (codeword != NULL) {
|
| + if (codeword) {
|
| codeword->setRowNumberAsRowIndicatorColumn();
|
| }
|
| }
|
| @@ -117,7 +117,7 @@ CFX_Int32Array* CBC_DetectionResultRowIndicatorColumn::getRowHeights(
|
| result->SetSize(barcodeMetadata->getRowCount());
|
| for (int32_t i = 0; i < getCodewords()->GetSize(); i++) {
|
| CBC_Codeword* codeword = (CBC_Codeword*)getCodewords()->GetAt(i);
|
| - if (codeword != NULL) {
|
| + if (codeword) {
|
| result->SetAt(codeword->getRowNumber(),
|
| result->GetAt(codeword->getRowNumber()) + 1);
|
| }
|
|
|