• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


コミットメタ情報

リビジョン2b8857fbfc5d0cc8b1b6f3d906120169465fd2ba (tree)
日時2005-04-28 23:37:20
作者Paul Brook <paul@code...>
コミッターPaul Brook

ログメッセージ

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

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

変更サマリ

差分

--- a/gdb/exceptions.c
+++ b/gdb/exceptions.c
@@ -282,8 +282,11 @@ print_flush (void)
282282
283283 /* 3. The system-level buffer. */
284284 gdb_stdout_serial = serial_fdopen (1);
285- serial_drain_output (gdb_stdout_serial);
286- serial_un_fdopen (gdb_stdout_serial);
285+ if (gdb_stdout_serial)
286+ {
287+ serial_drain_output (gdb_stdout_serial);
288+ serial_un_fdopen (gdb_stdout_serial);
289+ }
287290
288291 annotate_error_begin ();
289292 }