From ff30cd3431cbd436c90997185846d05de37c8d16 Mon Sep 17 00:00:00 2001 From: Xinrong Guo Date: Sun, 10 Nov 2019 14:01:37 +0800 Subject: [PATCH] Litecoin: Fix travis unsigned integer overflow error --- src/crypto/scrypt.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/crypto/scrypt.cpp b/src/crypto/scrypt.cpp index b96ee038b..be5cec206 100644 --- a/src/crypto/scrypt.cpp +++ b/src/crypto/scrypt.cpp @@ -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;