From c757ef9998dbda90063206e399d471d96b9fde4a Mon Sep 17 00:00:00 2001 From: Pavel Charvat Date: Mon, 23 Apr 2007 14:17:31 +0200 Subject: [PATCH] fixed bug in big_free --- lib/bigalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bigalloc.c b/lib/bigalloc.c index 91845b38..3749fc9c 100644 --- a/lib/bigalloc.c +++ b/lib/bigalloc.c @@ -71,7 +71,7 @@ big_free(void *start, unsigned int len) p -= CPU_PAGE_SIZE; len += 2*CPU_PAGE_SIZE; #endif - page_free(start, len); + page_free(p, len); } #ifdef TEST -- 2.39.2