Litecoin: Fix travis unsigned integer overflow error

This commit is contained in:
Xinrong Guo 2019-11-10 14:01:37 +08:00 committed by Adrian Gallagher
parent f935072f63
commit ff30cd3431
No known key found for this signature in database
GPG Key ID: FE3348877809386C

View File

@ -188,6 +188,7 @@ PBKDF2_SHA256(const uint8_t *passwd, size_t passwdlen, const uint8_t *salt,
#define ROTL(a, b) (((a) << (b)) | ((a) >> (32 - (b))))
__attribute__((no_sanitize("integer")))
static inline void xor_salsa8(uint32_t B[16], const uint32_t Bx[16])
{
uint32_t x00,x01,x02,x03,x04,x05,x06,x07,x08,x09,x10,x11,x12,x13,x14,x15;