mirror of
https://github.com/facebook/zstd.git
synced 2025-08-01 09:47:01 +03:00
[fuzzer] Fix FUZZ_seed()
This commit is contained in:
@ -55,10 +55,11 @@ extern "C" {
|
|||||||
* Consumes up to the first FUZZ_RNG_SEED_SIZE bytes of the input.
|
* Consumes up to the first FUZZ_RNG_SEED_SIZE bytes of the input.
|
||||||
*/
|
*/
|
||||||
FUZZ_STATIC uint32_t FUZZ_seed(uint8_t const **src, size_t* size) {
|
FUZZ_STATIC uint32_t FUZZ_seed(uint8_t const **src, size_t* size) {
|
||||||
|
uint8_t const *data = *src;
|
||||||
size_t const toHash = MIN(FUZZ_RNG_SEED_SIZE, *size);
|
size_t const toHash = MIN(FUZZ_RNG_SEED_SIZE, *size);
|
||||||
return XXH32(*src, toHash, 0);
|
|
||||||
*size -= toHash;
|
*size -= toHash;
|
||||||
*src += toHash;
|
*src += toHash;
|
||||||
|
return XXH32(data, toHash, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define FUZZ_rotl32(x, r) (((x) << (r)) | ((x) >> (32 - (r))))
|
#define FUZZ_rotl32(x, r) (((x) << (r)) | ((x) >> (32 - (r))))
|
||||||
|
Reference in New Issue
Block a user