OSDN Git Service

* mi-out.c (mi_out_new): Initialize suppress_ouput field of newly
authorkettenis <kettenis>
Mon, 9 Jul 2001 22:19:50 +0000 (22:19 +0000)
committerkettenis <kettenis>
Mon, 9 Jul 2001 22:19:50 +0000 (22:19 +0000)
created `struct ui_out_data'.

gdb/mi/ChangeLog
gdb/mi/mi-out.c

index 9784216..d7488b3 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-10  Mark Kettenis  <kettenis@gnu.org>
+
+       * mi-out.c (mi_out_new): Initialize suppress_ouput field of newly
+       created `struct ui_out_data'.
+
 2001-07-09  Kevin Buettner  <kevinb@redhat.com>
 
        * mi-main.c (register_changed_p, get_register): Use alloca()
index 97d0994..a92ccbe 100644 (file)
@@ -440,6 +440,7 @@ mi_out_new (int mi_version)
   int flags = 0;
   struct ui_out_data *data = XMALLOC (struct ui_out_data);
   data->suppress_field_separator = 0;
+  data->suppress_output = 0;
   data->mi_version = mi_version;
   /* FIXME: This code should be using a ``string_file'' and not the
      TUI buffer hack. */