aboutsummaryrefslogtreecommitdiff
path: root/dwl.c
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2020-07-23 17:34:50 -0400
committerDevin J. Pohly <djpohly@gmail.com>2020-07-23 17:34:50 -0400
commit8b13e42d3f0e1ee4e74ae1b186987bb7fd810404 (patch)
treee489957cef77fe9d2eb4533842bbf7fbcb8e080e /dwl.c
parentbc65c1a570226bbb36561df1356a782e93341da9 (diff)
fix more unfreed memory
Diffstat (limited to 'dwl.c')
-rw-r--r--dwl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dwl.c b/dwl.c
index 8e8fef3..00ba8d9 100644
--- a/dwl.c
+++ b/dwl.c
@@ -1655,6 +1655,7 @@ main(int argc, char *argv[])
wl_display_destroy_clients(dpy);
wlr_xcursor_manager_destroy(cursor_mgr);
wl_display_destroy(dpy);
+ wlr_cursor_destroy(cursor);
wlr_output_layout_destroy(output_layout);
return EXIT_SUCCESS;