diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-04-14 13:43:10 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-04-14 13:43:10 +0100 |
commit | 43ed41fdd22d283e5d1939116c8270d07b49cf35 (patch) | |
tree | c4879ad521de3578cc8dbd6ed39efaf3280ba0ac /contrib | |
parent | fa43e3bfc7a4ca93b3ffcae730b6705bc402a2b5 (diff) | |
download | rspamd-43ed41fdd22d283e5d1939116c8270d07b49cf35.tar.gz rspamd-43ed41fdd22d283e5d1939116c8270d07b49cf35.zip |
Fix xxhash invocation.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/xxhash/xxhash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/xxhash/xxhash.c b/contrib/xxhash/xxhash.c index 15064f9fb..7259878d6 100644 --- a/contrib/xxhash/xxhash.c +++ b/contrib/xxhash/xxhash.c @@ -920,8 +920,9 @@ FORCE_INLINE U64 XXH64_digest_endian (const XXH64_state_t* state_in, XXH_endiane h64 ^= h64 >> 29; h64 *= PRIME64_3; h64 ^= h64 >> 32; - +#if 0 XXH64_freeState((XXH64_state_t *)state_in); +#endif return h64; } |