diff options
Diffstat (limited to 'xfa/src/fxbarcode/qrcode/BC_QRCoderBitVector.cpp')
-rw-r--r-- | xfa/src/fxbarcode/qrcode/BC_QRCoderBitVector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/src/fxbarcode/qrcode/BC_QRCoderBitVector.cpp b/xfa/src/fxbarcode/qrcode/BC_QRCoderBitVector.cpp index 53a5e487a4..8bf5ba3d22 100644 --- a/xfa/src/fxbarcode/qrcode/BC_QRCoderBitVector.cpp +++ b/xfa/src/fxbarcode/qrcode/BC_QRCoderBitVector.cpp @@ -129,7 +129,7 @@ void CBC_QRCoderBitVector::AppendByte(int32_t value) {
if((m_sizeInBits >> 3) == m_size) {
uint8_t* newArray = FX_Alloc(uint8_t, m_size << 1);
- FXSYS_memcpy32(newArray, m_array, m_size);
+ FXSYS_memcpy(newArray, m_array, m_size);
if(m_array != NULL) {
FX_Free(m_array);
}
|