From 0e8325bd3bbef4f819f569d59cf2b7a86504f664 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Thu, 15 Jan 2009 18:25:27 +0000 Subject: [PATCH] fixed infinite recursion in allocator --- src/allocator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allocator.cpp b/src/allocator.cpp index b48a54307..d8a68edd3 100644 --- a/src/allocator.cpp +++ b/src/allocator.cpp @@ -56,7 +56,7 @@ namespace libtorrent #ifdef TORRENT_WINDOWS VirtualFree(block, 0, MEM_RELEASE); #else - free(block); + ::free(block); #endif }