pretty-print.c (mingw_ansi_fputs): Do not call _close() on the handle returned by...
authorLiu Hao <lh_mouse@126.com>
Tue, 14 Aug 2018 10:02:09 +0000 (10:02 +0000)
committerJonathan Yong <jyong@gcc.gnu.org>
Tue, 14 Aug 2018 10:02:09 +0000 (10:02 +0000)
* gcc/pretty-print.c (mingw_ansi_fputs): Do not call _close() on the handle
returned by _get_osf_handle().

From-SVN: r263530

gcc/ChangeLog
gcc/pretty-print.c

index f0a30b9c6374904bb8262e834b1a9dd23d87aeda..ec466dece376f1bf1a25dda97e1df82dd647efa0 100644 (file)
@@ -1,3 +1,8 @@
+2018-08-13  Liu Hao <lh_mouse@126.com>
+
+       * pretty-print.c (mingw_ansi_fputs): Do not call _close() on the
+       handle returned by _get_osf_handle().
+
 2018-08-13  Will Schmidt  <will_schmidt@vnet.ibm.com>
 
        * gcc/config/rs6000/rs6000.c (rs6000_gimple_fold_builtin): Add support
index 736af8f77359dd1f83f15102ba81a2aacc34a557..31eb8893f2ab4ea129ac82786d371dfcb9cecb98 100644 (file)
@@ -684,7 +684,6 @@ mingw_ansi_fputs (const char *str, FILE *fp)
     /* If it is not a console, write everything as-is.  */
     write_all (h, read, strlen (read));
 
-  _close ((intptr_t) h);
   return 1;
 }