1999-01-12 Jason Molenda (jsm@bugshack.cygnus.com)
authorJason Molenda <jmolenda@apple.com>
Wed, 13 Jan 1999 01:45:04 +0000 (01:45 +0000)
committerJason Molenda <jmolenda@apple.com>
Wed, 13 Jan 1999 01:45:04 +0000 (01:45 +0000)
        * monitor.c (init_monitor_ops): Initialize the monitor_ops
        structure if it hasn't already been done.

PR 18735

gdb/ChangeLog
gdb/monitor.c

index 8a8401a..4af4c22 100644 (file)
@@ -1,3 +1,8 @@
+1999-01-12  Jason Molenda  (jsm@bugshack.cygnus.com)
+
+       * monitor.c (init_monitor_ops): Initialize the monitor_ops
+       structure if it hasn't already been done.
+
 Tue Jan 12 14:50:10 1999  Stan Shebs  <shebs@andros.cygnus.com>
 
        * inftarg.c (child_ops): Don't initialize statically.
index 9420fe6..a8e4a6b 100644 (file)
@@ -2268,6 +2268,9 @@ void
 init_monitor_ops (ops)
      struct target_ops *ops;
 {
+  if (monitor_ops.to_magic != OPS_MAGIC)
+    init_base_monitor_ops ();
+
   memcpy (ops, &monitor_ops, sizeof monitor_ops);
 }