diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2020-07-23 17:34:50 -0400 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2020-07-23 17:34:50 -0400 |
commit | 8b13e42d3f0e1ee4e74ae1b186987bb7fd810404 (patch) | |
tree | e489957cef77fe9d2eb4533842bbf7fbcb8e080e | |
parent | bc65c1a570226bbb36561df1356a782e93341da9 (diff) |
fix more unfreed memory
-rw-r--r-- | dwl.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |