Commit 5a1a5945 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

XCB_window: memory leak

parent 6aa4cfa2
...@@ -237,6 +237,7 @@ static int Open (vlc_object_t *obj) ...@@ -237,6 +237,7 @@ static int Open (vlc_object_t *obj)
if (err) if (err)
{ {
msg_Err (wnd, "creating window: X11 error %d", err->error_code); msg_Err (wnd, "creating window: X11 error %d", err->error_code);
free (err);
goto error; goto error;
} }
......
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