From 5d36dcd67478cdb235f39d2aecb3270aba954001 Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Sat, 23 May 2026 10:54:50 -0400 Subject: fix memory leak --- teensy/teensy_ui.c | 1 + 1 file changed, 1 insertion(+) (limited to 'teensy/teensy_ui.c') diff --git a/teensy/teensy_ui.c b/teensy/teensy_ui.c index 050b1a1..86b2c94 100644 --- a/teensy/teensy_ui.c +++ b/teensy/teensy_ui.c @@ -258,6 +258,7 @@ void tyui_init(const ty_Font *font) void tyui_deinit(void) { + ty_list_free(uictx.root.cmds); for (int i = 0; i < uictx.window_count; i++) ty_list_free(uictx.windows[i].cmds); } -- cgit v1.3-2-g0d8e