fixed infinite recursion in allocator
This commit is contained in:
parent
113d1f3557
commit
0e8325bd3b
|
@ -56,7 +56,7 @@ namespace libtorrent
|
|||
#ifdef TORRENT_WINDOWS
|
||||
VirtualFree(block, 0, MEM_RELEASE);
|
||||
#else
|
||||
free(block);
|
||||
::free(block);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue