Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [patch] Crash on windows hosts
@ 2005-04-28  2:00 Paul Brook
  2005-04-28  3:27 ` Daniel Jacobowitz
  0 siblings, 1 reply; 5+ messages in thread
From: Paul Brook @ 2005-04-28  2:00 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 262 bytes --]

serial_fdopen can return NULL on non-unix (ie. windows) hosts. This was 
causing a segfault in print_flush.
The attached patch fixes this.

Ok?

Paul

2005-04-28  Paul Brook  <paul@codesourcery.com>

	* exceptions.c (print_flush): Handle NULL gdb_stdout_serial.

[-- Attachment #2: patch.gdb_serflush --]
[-- Type: text/x-diff, Size: 677 bytes --]

Index: gdb/exceptions.c
===================================================================
RCS file: /var/cvsroot/src-cvs/src/gdb/exceptions.c,v
retrieving revision 1.19
diff -u -p -r1.19 exceptions.c
--- gdb/exceptions.c	11 Feb 2005 18:13:49 -0000	1.19
+++ gdb/exceptions.c	28 Apr 2005 01:23:04 -0000
@@ -282,8 +282,11 @@ print_flush (void)
 
   /* 3.  The system-level buffer.  */
   gdb_stdout_serial = serial_fdopen (1);
-  serial_drain_output (gdb_stdout_serial);
-  serial_un_fdopen (gdb_stdout_serial);
+  if (gdb_stdout_serial)
+    {
+      serial_drain_output (gdb_stdout_serial);
+      serial_un_fdopen (gdb_stdout_serial);
+    }
 
   annotate_error_begin ();
 }

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-04-28 14:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-28  2:00 [patch] Crash on windows hosts Paul Brook
2005-04-28  3:27 ` Daniel Jacobowitz
2005-04-28  3:36   ` Christopher Faylor
2005-04-28 13:22     ` Daniel Jacobowitz
2005-04-28 14:05       ` Christopher Faylor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox