summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-11-24 19:19:06 +0100
committerAnton Kling <anton@kling.gg>2024-11-24 19:19:06 +0100
commitbf89077e024790649ff2150a7659926129699d13 (patch)
treec8fc9d5843a09f9606dc3929aeef85e99d2f4c86
parent23968c9f1116ab35d2f7c45be40ae18896517b79 (diff)
libc: fclose should always close the associated file descriptor
My previous "fix" was a misreading of the spec.
-rw-r--r--userland/libc/stdio/fclose.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/userland/libc/stdio/fclose.c b/userland/libc/stdio/fclose.c
index 5d66830..9e95b0b 100644
--- a/userland/libc/stdio/fclose.c
+++ b/userland/libc/stdio/fclose.c
@@ -9,9 +9,7 @@ int fclose(FILE *stream) {
if (stream->fflush) {
stream->fflush(stream);
}
- if (stream->has_control_over_the_fd) {
- close(stream->fd);
- }
+ close(stream->fd);
free(stream->cookie);
}
free(stream);