Commit 57380c2d authored by Chris Robinson's avatar Chris Robinson Committed by Alexandre Julliard

winex11: Free visual info stored with the context.

parent 15d591fa
......@@ -545,6 +545,7 @@ static inline void free_context(Wine_GLContext *context)
if (context->prev != NULL) context->prev->next = context->next;
else context_list = context->next;
if (context->vis) XFree(context->vis);
HeapFree(GetProcessHeap(), 0, context);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment