[PATCH][libgfortran] Fix uninitialized variable use in fallback_access
Kyrill Tkachov
kyrylo.tkachov@foss.arm.com
Fri Sep 14 08:06:00 GMT 2018
Hi all,
I've been tracking down a bug in a Fortran program on a newlib target and it boils down to fallback_access doing something bad.
The unconditional calls to close cause havoc when open doesn't get called due to the short-circuiting in the if-statement above
because the fd is uninitialised. In my environment GCC ends up calling close on file descriptor 0, thus trying to close stdin.
This patch tightens up the calling so that close is called only when the corresponding open call succeeded.
With this my runtime failure disappears.
Bootstrapped and tested on aarch64-none-linux-gnu.
Though that doesn't exercise this call I hope it's an obviously correct change.
Ok for trunk and the branches?
Thanks,
Kyrill
2018-09-14 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* io/unix.c (fallback_access): Avoid calling close on
uninitialized file descriptor.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: fort-access.patch
Type: text/x-patch
Size: 740 bytes
Desc: not available
URL: <http://gcc.gnu.org/pipermail/fortran/attachments/20180914/61c6a032/attachment.bin>
More information about the Fortran
mailing list