slow-hash: fix memory leak for Windows /karbowanec#41
This commit is contained in:
parent
eb59f7c563
commit
b1a9e97b2d
|
@ -524,7 +524,7 @@ void slow_hash_free_state(void)
|
|||
else
|
||||
{
|
||||
#if defined(_MSC_VER) || defined(__MINGW32__)
|
||||
VirtualFree(hp_state, MEMORY, MEM_RELEASE);
|
||||
VirtualFree(hp_state, 0, MEM_RELEASE);
|
||||
#else
|
||||
munmap(hp_state, MEMORY);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue