Correctly initialize the TUI locator window
authorPatrick Palka <patrick@parcs.ath.cx>
Sat, 27 Jun 2015 00:17:56 +0000 (20:17 -0400)
committerPatrick Palka <patrick@parcs.ath.cx>
Tue, 30 Jun 2015 17:44:25 +0000 (13:44 -0400)
The call to tui_alloc_content in tui_set_locator_info passes
locator->type as the type of the window whose content is being
allocated.  This may seem correct but it's actually not because when
this code path actually get executed locator->type has not yet been to
set LOCATOR_WIN so it defaults to 0 i.e. SRC_WIN.  Thus we allocate the
content of the locator window as if it was the source window.  This
oversight turns out not to be a big deal in practice but the patch that
follows depends on the locator's proc_name and full_name arrays to be
initialized to the empty string which is done by tui_alloc_content if
we pass to it LOCATOR_WIN.

This patch fixes this bug by explicitly passing LOCATOR_WIN to
tui_alloc_content.

gdb/ChangeLog:

* tui/tui-stack.c (tui_set_locator_info): Explicitly pass
LOCATOR_WIN to tui_alloc_content.

gdb/ChangeLog
gdb/tui/tui-stack.c

index 8a961c61e7d35f939a8f5c739cb78d4b8f663f50..5d5e8290db600cdaad4845ed359a02855c1ed7da 100644 (file)
@@ -1,3 +1,8 @@
+2015-06-30  Patrick Palka  <patrick@parcs.ath.cx>
+
+       * tui/tui-stack.c (tui_set_locator_info): Explicitly pass
+       LOCATOR_WIN to tui_alloc_content.
+
 2015-06-30  Yao Qi  <yao.qi@linaro.org>
 
        PR tdep/18605
index 2870d70b08eef309c1048c5713f2a90eff726164..b17d303d340d8b62b4b86e047175774e3a2c49d9 100644 (file)
@@ -306,7 +306,7 @@ tui_set_locator_info (struct gdbarch *gdbarch,
   /* Allocate the locator content if necessary.  */
   if (locator->content_size <= 0)
     {
-      locator->content = tui_alloc_content (1, locator->type);
+      locator->content = tui_alloc_content (1, LOCATOR_WIN);
       locator->content_size = 1;
     }