| Index: xfa/fxbarcode/pdf417/BC_PDF417Reader.cpp
|
| diff --git a/xfa/fxbarcode/pdf417/BC_PDF417Reader.cpp b/xfa/fxbarcode/pdf417/BC_PDF417Reader.cpp
|
| index e68969ef306390fde8420f9d22faafe5abdc336e..894b5d3fad1ff34b23136ad8d3aad0a8bc019804 100644
|
| --- a/xfa/fxbarcode/pdf417/BC_PDF417Reader.cpp
|
| +++ b/xfa/fxbarcode/pdf417/BC_PDF417Reader.cpp
|
| @@ -94,9 +94,8 @@ CFX_ByteString CBC_PDF417Reader::Decode(CBC_BinaryBitmap* image,
|
| }
|
| int32_t CBC_PDF417Reader::getMaxWidth(CBC_ResultPoint* p1,
|
| CBC_ResultPoint* p2) {
|
| - if (p1 == NULL || p2 == NULL) {
|
| + if (!p1 || !p2)
|
| return 0;
|
| - }
|
| return (int32_t)FXSYS_fabs(p1->GetX() - p2->GetX());
|
| }
|
| int32_t CBC_PDF417Reader::getMinWidth(CBC_ResultPoint* p1,
|
|
|