diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-01-17 18:26:22 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-01-17 18:26:22 +0800 |
commit | a1e29df151205428e158dff7920a0316aa8dd153 (patch) | |
tree | f1cff3240d7f5139ad887d51362a1aabff835fc1 /mbbsd | |
parent | 84ed6db2b29bd0b102bbf39cf146103b587c6939 (diff) | |
download | pttbbs-a1e29df151205428e158dff7920a0316aa8dd153.tar pttbbs-a1e29df151205428e158dff7920a0316aa8dd153.tar.gz pttbbs-a1e29df151205428e158dff7920a0316aa8dd153.tar.bz2 pttbbs-a1e29df151205428e158dff7920a0316aa8dd153.tar.lz pttbbs-a1e29df151205428e158dff7920a0316aa8dd153.tar.xz pttbbs-a1e29df151205428e158dff7920a0316aa8dd153.tar.zst pttbbs-a1e29df151205428e158dff7920a0316aa8dd153.zip |
forget to fclose()
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@627 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/cache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mbbsd/cache.c b/mbbsd/cache.c index f8cc453f..7016239b 100644 --- a/mbbsd/cache.c +++ b/mbbsd/cache.c @@ -1,4 +1,4 @@ -/* $Id: cache.c,v 1.54 2002/12/31 17:40:51 in2 Exp $ */ +/* $Id: cache.c,v 1.55 2003/01/17 10:26:22 kcwu Exp $ */ #include "bbs.h" #ifndef __FreeBSD__ @@ -1008,6 +1008,7 @@ reload_fcache() break; } } + fclose(fp); } SHM->max_user = 0; |