diff --git a/glnx-fdio.c b/glnx-fdio.c index e8e2167f5fb223dbef81e4644dd1f3c8915bde12..0046807ad8f589ac5a8a5360aa6b6b90a677c9f2 100644 --- a/glnx-fdio.c +++ b/glnx-fdio.c @@ -168,9 +168,11 @@ glnx_tmpfile_clear (GLnxTmpfile *tmpf) return; if (!tmpf->initialized) return; - if (tmpf->fd == -1) - return; - (void) close (tmpf->fd); + if (tmpf->fd != -1) + { + if (close (tmpf->fd) < 0) + g_assert (errno != EBADF); + } /* If ->path is set, we're likely aborting due to an error. Clean it up */ if (tmpf->path) { diff --git a/tests/test-libglnx-fdio.c b/tests/test-libglnx-fdio.c index 4b81a9573fda01f2ca728cc1a0b13cd790cd2d21..36ded80c395d54c7a72fd98e1aabf97b3e54865c 100644 --- a/tests/test-libglnx-fdio.c +++ b/tests/test-libglnx-fdio.c @@ -171,6 +171,7 @@ test_stdio_file (void) if (!glnx_open_anonymous_tmpfile (O_RDWR|O_CLOEXEC, &tmpf, error)) goto out; f = fdopen (tmpf.fd, "w"); + tmpf.fd = -1; /* Ownership was transferred via fdopen() */ if (!f) { (void)glnx_throw_errno_prefix (error, "fdopen");