Use ui_file_as_string in gdb/utils.c

gdb/ChangeLog:
2016-11-08  Pedro Alves  <palves@redhat.com>

	* utils.c (error_stream): Use ui_file_as_string and std::string.
This commit is contained in:
Pedro Alves 2016-11-08 15:26:44 +00:00
parent 56dbf31760
commit d16c5475b5
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2016-11-08 Pedro Alves <palves@redhat.com>
* utils.c (error_stream): Use ui_file_as_string and std::string.
2016-11-08 Pedro Alves <palves@redhat.com> 2016-11-08 Pedro Alves <palves@redhat.com>
* ui-out.c (ui_out_field_stream): Use ui_file_as_string. * ui-out.c (ui_out_field_stream): Use ui_file_as_string.

View File

@ -480,10 +480,9 @@ verror (const char *string, va_list args)
void void
error_stream (struct ui_file *stream) error_stream (struct ui_file *stream)
{ {
char *message = ui_file_xstrdup (stream, NULL); std::string message = ui_file_as_string (stream);
make_cleanup (xfree, message); error (("%s"), message.c_str ());
error (("%s"), message);
} }
/* Emit a message and abort. */ /* Emit a message and abort. */