From 3537bc23d960f961d66d36919049c0cc095c8a9c Mon Sep 17 00:00:00 2001 From: Hannes Domani Date: Tue, 5 Jan 2021 17:10:15 +0100 Subject: [PATCH] Don't fill regs window with a negative number of spaces Function n_spaces can't handle negative values, and returns an invalid pointer in this case. gdb/ChangeLog: 2021-02-07 Hannes Domani * tui/tui-regs.c (tui_data_item_window::rerender): Don't call n_spaces with a negative value. --- gdb/ChangeLog | 5 +++++ gdb/tui/tui-regs.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ce3ebfb6b3..20f3541a63 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2021-02-07 Hannes Domani + + * tui/tui-regs.c (tui_data_item_window::rerender): Don't call + n_spaces with a negative value. + 2021-02-07 Hannes Domani * tui/tui-regs.c (tui_data_window::display_registers_from): diff --git a/gdb/tui/tui-regs.c b/gdb/tui/tui-regs.c index 78cb209974..5caff7195e 100644 --- a/gdb/tui/tui-regs.c +++ b/gdb/tui/tui-regs.c @@ -492,7 +492,8 @@ tui_data_item_window::rerender (WINDOW *handle, int field_width) (void) wstandout (handle); mvwaddnstr (handle, y, x, content.c_str (), field_width - 1); - waddstr (handle, n_spaces (field_width - content.size ())); + if (content.size () < field_width) + waddstr (handle, n_spaces (field_width - content.size ())); if (highlight) /* We ignore the return value, casting it to void in order to avoid -- 2.34.1