From 7ac400a162e27eda95a951d0a36845c6d5a7de7e Mon Sep 17 00:00:00 2001 From: Scott Giese Date: Sun, 23 Aug 2020 00:27:31 -0500 Subject: [PATCH] REVIEW: Memory Leak - vgCreateContextSH() 1,624 bytes in 1 blocks are still reachable --- simgear/canvas/ShivaVG/src/shContext.c | 1 + 1 file changed, 1 insertion(+) diff --git a/simgear/canvas/ShivaVG/src/shContext.c b/simgear/canvas/ShivaVG/src/shContext.c index 545f30bf..84315db1 100644 --- a/simgear/canvas/ShivaVG/src/shContext.c +++ b/simgear/canvas/ShivaVG/src/shContext.c @@ -39,6 +39,7 @@ VG_API_CALL VGboolean vgCreateContextSH(VGint width, VGint height) if (g_context) return VG_TRUE; /* create new context */ + // REVIEW: Memory Leak - 1,624 bytes in 1 blocks are still reachable SH_NEWOBJ(VGContext, g_context); if (!g_context) return VG_FALSE;