summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-09-26 19:45:08 +0300
committerAndrei Karas <akaras@inbox.ru>2016-09-26 19:45:08 +0300
commit9656a691e1c8c68f7832f33b3777217f8953ba11 (patch)
tree079fe84dd60f0eb2f7baa1125d624766ca26394b
parent7a4acb8bed366828a9ad27d40fc9f7ea9ea6ccfd (diff)
downloadevol-hercules-9656a691e1c8c68f7832f33b3777217f8953ba11.tar.gz
evol-hercules-9656a691e1c8c68f7832f33b3777217f8953ba11.tar.bz2
evol-hercules-9656a691e1c8c68f7832f33b3777217f8953ba11.tar.xz
evol-hercules-9656a691e1c8c68f7832f33b3777217f8953ba11.zip
Increase temp buffer size in craftconf.c for avoid possible overflow.
-rw-r--r--src/emap/craftconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emap/craftconf.c b/src/emap/craftconf.c
index 7056d4f..33e341f 100644
--- a/src/emap/craftconf.c
+++ b/src/emap/craftconf.c
@@ -373,7 +373,7 @@ static bool craft_read_db_sub(struct config_setting_t *craftt,
static void load_craft_db(const char *filename)
{
struct config_t craft_db_conf;
- char filepath[256];
+ char filepath[300];
struct config_setting_t *cdb;
struct config_setting_t *t;
int i = 0;