Merge pull request #360 from acrisci/bug/x11-output-free

bug: free x11 backend output in destroy
This commit is contained in:
Drew DeVault 2017-10-30 22:18:50 -04:00 committed by GitHub
commit 37b1e8bd25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -331,6 +331,7 @@ static void output_destroy(struct wlr_output *wlr_output) {
eglDestroySurface(x11->egl.display, output->surf);
xcb_destroy_window(x11->xcb_conn, output->win);
free(wlr_output);
}
static void output_make_current(struct wlr_output *wlr_output) {