diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a45c2c7499b..3b9615dfe42 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2021-02-08 Andrew Burgess + + * tui/tui-layout.c (tui_apply_current_layout): Restore the delete + of the window objects. + 2021-02-08 Andrew Burgess * python/python.c (gdbpy_print_stack): Reformat an error message. diff --git a/gdb/tui/tui-layout.c b/gdb/tui/tui-layout.c index 90555f52736..f01e2f9f3a6 100644 --- a/gdb/tui/tui-layout.c +++ b/gdb/tui/tui-layout.c @@ -104,6 +104,7 @@ tui_apply_current_layout () { if (focus == win_info) tui_set_win_focus_to (tui_windows[0]); + delete win_info; } }