aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/python/py-tui.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1d486c4..5cd74e6 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
2020-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
+ Revert commit 982a38f60b0.
+ * python/py-tui.c (gdbpy_tui_set_title): Restore use of get.
+
+2020-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
+
* python/py-tui.c (gdbpy_tui_set_title): Use release, not get, to
avoid use after free.
diff --git a/gdb/python/py-tui.c b/gdb/python/py-tui.c
index f2c0339..ca88f85 100644
--- a/gdb/python/py-tui.c
+++ b/gdb/python/py-tui.c
@@ -433,7 +433,7 @@ gdbpy_tui_set_title (PyObject *self, PyObject *newvalue, void *closure)
if (value == nullptr)
return -1;
- win->window->title = value.release ();
+ win->window->title = value.get ();
return 0;
}