| Index: xfa/fxbarcode/common/BC_CommonBitMatrix.cpp
|
| diff --git a/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp b/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp
|
| index e52f3dca04aa6bcfaf2590948e0829c487a68afe..b9b218c60f300a11b931a8c6f7c05404fd17791b 100644
|
| --- a/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp
|
| +++ b/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp
|
| @@ -49,7 +49,7 @@ void CBC_CommonBitMatrix::Init(int32_t width, int32_t height) {
|
| CBC_CommonBitMatrix::~CBC_CommonBitMatrix() {
|
| FX_Free(m_bits);
|
| }
|
| -FX_BOOL CBC_CommonBitMatrix::Get(int32_t x, int32_t y) {
|
| +bool CBC_CommonBitMatrix::Get(int32_t x, int32_t y) {
|
| int32_t offset = y * m_rowSize + (x >> 5);
|
| if (offset >= m_rowSize * m_height || offset < 0) {
|
| return false;
|
|
|