From 69ad4a39e32e198c3a71600693020bc6eef9593a Mon Sep 17 00:00:00 2001 From: Scott Giese Date: Sat, 22 Aug 2020 22:42:09 -0500 Subject: [PATCH] REVIEW: Memory Leak - nasal newBlock() 168 bytes in 7 blocks are still reachable --- simgear/nasal/gc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/simgear/nasal/gc.c b/simgear/nasal/gc.c index 423a42ba..59e63af0 100644 --- a/simgear/nasal/gc.c +++ b/simgear/nasal/gc.c @@ -301,6 +301,7 @@ static void newBlock(struct naPool* p, int need) if(need < MIN_BLOCK_SIZE) need = MIN_BLOCK_SIZE; + // REVIEW: Memory Leak - 168 bytes in 7 blocks are still reachable newb = naAlloc(sizeof(struct Block)); // REVIEW: Memory Leak - 113,376 bytes in 1 blocks are still reachable newb->block = naAlloc(need * p->elemsz);