[Issue 19751] std.stdio.File should not retry fclose after error

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Mar 19 01:17:34 UTC 2019


https://issues.dlang.org/show_bug.cgi?id=19751

Dlang Bot <dlang-bot at dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #2 from Dlang Bot <dlang-bot at dlang.rocks> ---
dlang/phobos pull request #6913 "Fix Issue 19751 - std.stdio.File should not
retry fclose after error" was merged into master:

- 272b93374865af8881bf498226bf3028e38493fd by Vladimir Panteleev:
  Fix Issue 19751 - std.stdio.File should not retry fclose after error

  C fclose is allowed to fail, and some libc implementations do cause it
  to fail.

  For example, reading on a file opened only for writing, or (in Wine's
  MSVCRT implementation) writing on a file opened only for reading sets
  an error flag, which then causes fclose to return EOF to signal an
  error.

  However, all descriptions of the function specify that "whether or not
  the call succeeds, the stream shall be disassociated from the file"
  and "after the call to fclose(), any use of stream results in
  undefined behavior" (POSIX) or similar.

  Currently, if File.close throws and is called again (e.g. in a
  destructor), it will retry the fclose call. This is undefined behavior
  as described above, and may potentially affect an unrelated file.

  It also makes it overly difficult to "get rid" of a File instance
  associated with a FILE with its error flag set - all attempts at
  destroying it will fail and only be eventually retried.

https://github.com/dlang/phobos/pull/6913

--


More information about the Digitalmars-d-bugs mailing list