aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2018-05-26 23:21:23 -0600
committerTom Tromey <tom@tromey.com>2018-07-17 13:21:47 -0600
commit15bf30027bcb167833a0ca2c619c03f177ef1ba4 (patch)
tree117580eb74accac812d65ad76bb839237f0ab4d3 /gdb/ChangeLog
parent7eb1a66c26b57803bb4245f84cf15278297bb649 (diff)
downloadgdb-15bf30027bcb167833a0ca2c619c03f177ef1ba4.zip
gdb-15bf30027bcb167833a0ca2c619c03f177ef1ba4.tar.gz
gdb-15bf30027bcb167833a0ca2c619c03f177ef1ba4.tar.bz2
Change gdbscm_exception_message_to_string to return a unique_xmalloc_ptr
This changes gdbscm_exception_message_to_string to return a unique_xmalloc_ptr, allowing for the removal of some cleanups. unique_xmalloc_ptr was chosen because at the root of the call chains is a function from Guile that returns a malloc'd string. gdb/ChangeLog 2018-07-17 Tom Tromey <tom@tromey.com> * guile/scm-param.c (pascm_signal_setshow_error): Update. * guile/guile-internal.h (gdbscm_exception_message_to_string): Update. * guile/scm-cmd.c (cmdscm_function): Update. * guile/scm-pretty-print.c (ppscm_print_exception_unless_memory_error): Update. * guile/scm-exception.c (gdbscm_exception_message_to_string): Return unique_xmalloc_ptr.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 584ea6f..1956f78 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,16 @@
2018-07-17 Tom Tromey <tom@tromey.com>
+ * guile/scm-param.c (pascm_signal_setshow_error): Update.
+ * guile/guile-internal.h (gdbscm_exception_message_to_string):
+ Update.
+ * guile/scm-cmd.c (cmdscm_function): Update.
+ * guile/scm-pretty-print.c
+ (ppscm_print_exception_unless_memory_error): Update.
+ * guile/scm-exception.c (gdbscm_exception_message_to_string):
+ Return unique_xmalloc_ptr.
+
+2018-07-17 Tom Tromey <tom@tromey.com>
+
* guile/scm-pretty-print.c (ppscm_make_pp_type_error_exception):
Use string_printf.