| Index: xfa/src/fxbarcode/pdf417/BC_PDF417BoundingBox.cpp
|
| diff --git a/xfa/src/fxbarcode/pdf417/BC_PDF417BoundingBox.cpp b/xfa/src/fxbarcode/pdf417/BC_PDF417BoundingBox.cpp
|
| index c14e0de1333765f0154fefc9c4d4cc409643ca7c..f2f7b06a59849e8e9530d700af5986f385f98ccc 100644
|
| --- a/xfa/src/fxbarcode/pdf417/BC_PDF417BoundingBox.cpp
|
| +++ b/xfa/src/fxbarcode/pdf417/BC_PDF417BoundingBox.cpp
|
| @@ -32,8 +32,7 @@ CBC_BoundingBox::CBC_BoundingBox(CBC_CommonBitMatrix* image,
|
| int32_t& e) {
|
| if ((topLeft == NULL && topRight == NULL) ||
|
| (bottomLeft == NULL && bottomRight == NULL) ||
|
| - (topLeft != NULL && bottomLeft == NULL) ||
|
| - (topRight != NULL && bottomRight == NULL)) {
|
| + (topLeft && bottomLeft == NULL) || (topRight && bottomRight == NULL)) {
|
| e = BCExceptionNotFoundInstance;
|
| }
|
| init(image, topLeft, bottomLeft, topRight, bottomRight);
|
|
|