From f10cc7cf39e0aa34583d4d5811615211660edc8c Mon Sep 17 00:00:00 2001 From: Chip Black Date: Sun, 19 Dec 2010 05:16:37 -0600 Subject: [PATCH] Whoops, what the hell was that? Fix virtual address space leak -- was unmapping with the wrong size due to a spurious extra sizeof(). --- database.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database.c b/database.c index 2da6530..6e9f494 100644 --- a/database.c +++ b/database.c @@ -36,7 +36,7 @@ void blerg_segment_close(struct blerg *blerg) { if (blerg->data_fd != -1) close(blerg->data_fd); if (blerg->index != NULL) - munmap((void *)blerg->index, sizeof(RECORDS_PER_SEGMENT * sizeof(struct record))); + munmap((void *)blerg->index, RECORDS_PER_SEGMENT * sizeof(struct record)); if (blerg->index_fd != -1) close(blerg->index_fd); } -- 2.25.1