diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-01-17 15:08:04 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-01-17 15:08:04 +0800 |
commit | 68630befaef74138775994f1269b906e8ad56992 (patch) | |
tree | 2f2721ac20c96d08627e009ac5f45c15a7afb415 | |
parent | de169e16fd9f0731d709e36099abc3f5c9eb0884 (diff) | |
download | pttbbs-68630befaef74138775994f1269b906e8ad56992.tar pttbbs-68630befaef74138775994f1269b906e8ad56992.tar.gz pttbbs-68630befaef74138775994f1269b906e8ad56992.tar.bz2 pttbbs-68630befaef74138775994f1269b906e8ad56992.tar.lz pttbbs-68630befaef74138775994f1269b906e8ad56992.tar.xz pttbbs-68630befaef74138775994f1269b906e8ad56992.tar.zst pttbbs-68630befaef74138775994f1269b906e8ad56992.zip |
fix bug: access bache[-2] if sysop enter hot-board-list and hit 'f'
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@616 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/board.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/board.c b/pttbbs/mbbsd/board.c index 98b88b87..4d5a42dc 100644 --- a/pttbbs/mbbsd/board.c +++ b/pttbbs/mbbsd/board.c @@ -1,4 +1,4 @@ -/* $Id: board.c,v 1.68 2003/01/16 11:58:04 kcwu Exp $ */ +/* $Id: board.c,v 1.69 2003/01/17 07:08:04 kcwu Exp $ */ #include "bbs.h" #define BRC_STRLEN 15 /* Length of board name */ #define BRC_MAXSIZE 24576 @@ -48,6 +48,7 @@ static char brc_buf[BRC_MAXSIZE]; static char brc_name[BRC_STRLEN]; static char *fn_boardrc = ".boardrc"; static int brc_size; +char *brc_buf_addr=brc_buf; void brc_update() @@ -927,7 +928,7 @@ choose_board(int newflag) break; case 'F': case 'f': - if (class_bid && HAS_PERM(PERM_SYSOP)) { + if (class_bid>0 && HAS_PERM(PERM_SYSOP)) { bcache[class_bid - 1].firstchild[cuser.uflag & BRDSORT_FLAG ? 1 : 0] = NULL; brdnum = -1; |