From: Siavash Eliasi Date: Mon, 10 Feb 2014 09:58:16 +0000 (+0330) Subject: glx/apple: Fixed glx context memory leak in case of failure. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2a399d9eae08be0a1b8fa2394a02aba54ede6b03;p=mesa.git glx/apple: Fixed glx context memory leak in case of failure. Reviewed-by: Kristian Høgsberg Reviewed-by: Jeremy Huddleston Sequoia: --- diff --git a/src/glx/apple/apple_glx_context.c b/src/glx/apple/apple_glx_context.c index 0bb25b42575..8a6ded28aa2 100644 --- a/src/glx/apple/apple_glx_context.c +++ b/src/glx/apple/apple_glx_context.c @@ -142,6 +142,7 @@ apple_glx_create_context(void **ptr, Display * dpy, int screen, if (sharedac && !is_context_valid(sharedac)) { *errorptr = GLXBadContext; *x11errorptr = false; + free(ac); return true; }