diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-04-21 17:19:28 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-04-21 17:19:28 +0800 |
commit | 2d8ee1c78013c104374613d064565aa7e14c4f2a (patch) | |
tree | d4b4df26a1745ff0e82a6f752463e1f4f3bf6697 /include | |
parent | a6162aedbc643514dccac3058888a81b63ea237d (diff) | |
download | pttbbs-2d8ee1c78013c104374613d064565aa7e14c4f2a.tar pttbbs-2d8ee1c78013c104374613d064565aa7e14c4f2a.tar.gz pttbbs-2d8ee1c78013c104374613d064565aa7e14c4f2a.tar.bz2 pttbbs-2d8ee1c78013c104374613d064565aa7e14c4f2a.tar.lz pttbbs-2d8ee1c78013c104374613d064565aa7e14c4f2a.tar.xz pttbbs-2d8ee1c78013c104374613d064565aa7e14c4f2a.tar.zst pttbbs-2d8ee1c78013c104374613d064565aa7e14c4f2a.zip |
buffer overflow: file path [64] is too small!
use PATHLEN instead.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2706 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 5b562c10..ec6b6f9c 100644 --- a/include/config.h +++ b/include/config.h @@ -97,6 +97,10 @@ #define MAXPATHLEN (256) #endif +#ifndef PATHLEN +#define PATHLEN (256) +#endif + #ifndef MAX_BOARD #define MAX_BOARD (8192) /* 最大開板個數 */ #endif |