diff options
Diffstat (limited to 'gdb/guile/scm-param.c')
-rw-r--r-- | gdb/guile/scm-param.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/guile/scm-param.c b/gdb/guile/scm-param.c index d48f14e..7ff4af9 100644 --- a/gdb/guile/scm-param.c +++ b/gdb/guile/scm-param.c @@ -251,10 +251,10 @@ pascm_signal_setshow_error (SCM exception, const char *msg) itself. */ if (gdbscm_user_error_p (gdbscm_exception_key (exception))) { - char *excp_text = gdbscm_exception_message_to_string (exception); + gdb::unique_xmalloc_ptr<char> excp_text + = gdbscm_exception_message_to_string (exception); - make_cleanup (xfree, excp_text); - error ("%s", excp_text); + error ("%s", excp_text.get ()); } else { |