diff options
author | Anton Kling <anton@kling.gg> | 2024-11-24 19:19:06 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-11-24 19:19:06 +0100 |
commit | bf89077e024790649ff2150a7659926129699d13 (patch) | |
tree | c8fc9d5843a09f9606dc3929aeef85e99d2f4c86 | |
parent | 23968c9f1116ab35d2f7c45be40ae18896517b79 (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.c | 4 |
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); |