From 1a82ceff0f054676003bc564138db536b5cb7a72 Mon Sep 17 00:00:00 2001 From: in2 Date: Wed, 26 Mar 2003 12:24:40 +0000 Subject: security fix git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@721 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/board.c | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'mbbsd') diff --git a/mbbsd/board.c b/mbbsd/board.c index 2aed6b3e..dc2596ed 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -1,4 +1,4 @@ -/* $Id: board.c,v 1.94 2003/03/26 12:11:40 victor Exp $ */ +/* $Id: board.c,v 1.95 2003/03/26 12:24:40 in2 Exp $ */ #include "bbs.h" #define BRC_STRLEN 15 /* Length of board name */ #define BRC_MAXSIZE 24576 @@ -739,11 +739,16 @@ load_boards(char *key) if (class_bid <= 0) { nbrd = (boardstat_t *) MALLOC(sizeof(boardstat_t) * numboards); if( yank_flag == 0 ){ // fav mode - for( i = 0 ; i < fav->nDatas ; ++i ){ - if( fav->b[i].attr & (BRD_FAV | BRD_LINE) ) - addnewbrdstat(fav->b[i].bid - 1, BRD_LINE); - else if (fav->b[i].attr & BRD_FAV && (state = Ben_Perm( (bptr = &bcache[ fav->b[i].bid - 1 ])))) - addnewbrdstat(fav->b[i].bid - 1, state); + for( i = 0 ; i < fav->nDatas ; ++i ){ + if( fav->b[i].attr & BRD_FAV ){ + if( fav->b[i].attr & BRD_LINE ) + addnewbrdstat(fav->b[i].bid - 1, BRD_LINE); + else{ + bptr = &bcache[ fav->b[i].bid - 1 ]; + if( (state = Ben_Perm(bptr)) ) + addnewbrdstat(fav->b[i].bid - 1, state); + } + } } } else{ // general case -- cgit v1.2.3