| Index: xfa/fxbarcode/common/BC_CommonBitMatrix.cpp
|
| diff --git a/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp b/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp
|
| index a8f87e7ec4468a24d77d0914b1a9aede7372af62..4fff7b1a84bd30952376528b259ad5700b78bc0e 100644
|
| --- a/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp
|
| +++ b/xfa/fxbarcode/common/BC_CommonBitMatrix.cpp
|
| @@ -54,7 +54,7 @@ FX_BOOL CBC_CommonBitMatrix::Get(int32_t x, int32_t y) {
|
| if (offset >= m_rowSize * m_height || offset < 0) {
|
| return false;
|
| }
|
| - return ((((FX_DWORD)m_bits[offset]) >> (x & 0x1f)) & 1) != 0;
|
| + return ((((uint32_t)m_bits[offset]) >> (x & 0x1f)) & 1) != 0;
|
| }
|
| int32_t* CBC_CommonBitMatrix::GetBits() {
|
| return m_bits;
|
|
|