diff options
| author | Dmitrij Tejblum <dt@FreeBSD.org> | 1999-11-21 22:34:57 +0000 |
|---|---|---|
| committer | Dmitrij Tejblum <dt@FreeBSD.org> | 1999-11-21 22:34:57 +0000 |
| commit | dcd26325e8953b594d6d09dfb1f43a55e1717fad (patch) | |
| tree | 08b1794e11ee76f5227e15881db56518221e6af1 | |
| parent | 490ccf9c5a055ca815801f849d0223f305d2a8cf (diff) | |
Notes
| -rw-r--r-- | lib/libc/stdio/fclose.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/fclose.c b/lib/libc/stdio/fclose.c index 302a7bac3dc2..8ddb98bd11aa 100644 --- a/lib/libc/stdio/fclose.c +++ b/lib/libc/stdio/fclose.c @@ -69,8 +69,8 @@ fclose(fp) if (HASLB(fp)) FREELB(fp); FUNLOCKFILE(fp); - fp->_flags = 0; /* Release this FILE for reuse. */ fp->_file = -1; fp->_r = fp->_w = 0; /* Mess up if reaccessed. */ + fp->_flags = 0; /* Release this FILE for reuse. */ return (r); } |
