------- Additional Comments From pinskia at gcc dot gnu dot org 2004-12-20 13:01 ------- In a way this is not a bug: fd = mkstemps (temp_filename, suffix_len); /* If mkstemps failed, then something bad is happening. Maybe we should issue a message about a possible security attack in progress? */ if (fd == -1) abort (); /* Similarly if we can not close the file. */ if (close (fd)) abort ();
-- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19089