This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository e16-epplets.
View the commit online.
commit 83d5d98d6888744e0cbe361cd7293e7134a1d760
Author: Kim Woelders <[email protected]>
AuthorDate: Mon Dec 15 20:00:02 2025 +0100
api: Fix memory leak in Epplet_bind_double_GL()
---
api/epplet_glx.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/api/epplet_glx.c b/api/epplet_glx.c
index b2292b4..82e58b3 100644
--- a/api/epplet_glx.c
+++ b/api/epplet_glx.c
@@ -30,6 +30,7 @@ Epplet_bind_double_GL(Epplet_gadget da, int red, int green, int blue,
win = Epplet_get_drawingarea_window(da);
vi = glXChooseVisual(disp, DefaultScreen(disp), attributeListDbl);
cx = glXCreateContext(disp, vi, 0, GL_TRUE);
+ XFree(vi);
glXMakeCurrent(disp, win, cx);
return cx;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.