From e1a6602a5929b5ca7601240c0bf10f40ae1d1249 Mon Sep 17 00:00:00 2001 From: Scott Giese Date: Sat, 22 Aug 2020 18:07:11 -0500 Subject: [PATCH] REVIEW: Memory Leak - naNewContext() 8,184 bytes in 1 blocks are still reachable --- simgear/nasal/code.c | 1 + 1 file changed, 1 insertion(+) diff --git a/simgear/nasal/code.c b/simgear/nasal/code.c index 0c92ecba..e1570ff6 100644 --- a/simgear/nasal/code.c +++ b/simgear/nasal/code.c @@ -210,6 +210,7 @@ naContext naNewContext() initContext(c); } else { UNLOCK(); + // REVIEW: Memory Leak - 8,184 bytes in 1 blocks are still reachable c = (naContext)naAlloc(sizeof(struct Context)); initTemps(c); initContext(c);