summaryrefslogtreecommitdiffstats
path: root/mbbsd/indict.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-07-02 21:01:43 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-07-02 21:01:43 +0800
commit562677712b03d169f51840c79690111b235ec862 (patch)
tree28b0c9bd3bf6ff7c819045459639d69890c389e7 /mbbsd/indict.c
parent038f26837cc4efacf5798361e0d229516ba119ff (diff)
downloadpttbbs-562677712b03d169f51840c79690111b235ec862.tar
pttbbs-562677712b03d169f51840c79690111b235ec862.tar.gz
pttbbs-562677712b03d169f51840c79690111b235ec862.tar.bz2
pttbbs-562677712b03d169f51840c79690111b235ec862.tar.lz
pttbbs-562677712b03d169f51840c79690111b235ec862.tar.xz
pttbbs-562677712b03d169f51840c79690111b235ec862.tar.zst
pttbbs-562677712b03d169f51840c79690111b235ec862.zip
fix memory bug
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@400 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/indict.c')
-rw-r--r--mbbsd/indict.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mbbsd/indict.c b/mbbsd/indict.c
index 8861b320..ca44033a 100644
--- a/mbbsd/indict.c
+++ b/mbbsd/indict.c
@@ -1,4 +1,4 @@
-/* $Id: indict.c,v 1.3 2002/06/04 13:08:33 in2 Exp $ */
+/* $Id: indict.c,v 1.4 2002/07/02 13:01:43 in2 Exp $ */
#include "bbs.h"
#define REFER "etc/dicts"
@@ -8,6 +8,10 @@ static void addword(char word[])
char buf[150],temp[150],a[3];
FILE *fp = fopen(database,"r+");
+ if( fp == NULL ){
+ vmsg("database error");
+ return ;
+ }
fgets(buf,130,fp);
fseek(fp,0,2);
if(HAVE_PERM(PERM_LOGINOK)) {