fixed infinite recursion in allocator

This commit is contained in:
Arvid Norberg 2009-01-15 18:25:27 +00:00
parent 113d1f3557
commit 0e8325bd3b
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ namespace libtorrent
#ifdef TORRENT_WINDOWS
VirtualFree(block, 0, MEM_RELEASE);
#else
free(block);
::free(block);
#endif
}