summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2020-05-28 03:21:59 +0300
committerAndrei Karas <akaras@inbox.ru>2020-06-01 01:08:51 +0300
commit410e04c2562f7d7dd9a2f242d6ef821dbe0b2fc5 (patch)
tree0563a85a78d21c6ca045495a01f4e53dba15814d
parent8f151ab584cef0adf96c5cbcac6c2ace97bf4484 (diff)
downloadhercules-410e04c2562f7d7dd9a2f242d6ef821dbe0b2fc5.tar.gz
hercules-410e04c2562f7d7dd9a2f242d6ef821dbe0b2fc5.tar.bz2
hercules-410e04c2562f7d7dd9a2f242d6ef821dbe0b2fc5.tar.xz
hercules-410e04c2562f7d7dd9a2f242d6ef821dbe0b2fc5.zip
Fix possible crash in mapif_guild_withdraw
-rw-r--r--src/char/mapif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/mapif.c b/src/char/mapif.c
index f0c886586..ed0133da3 100644
--- a/src/char/mapif.c
+++ b/src/char/mapif.c
@@ -559,7 +559,7 @@ static int mapif_guild_withdraw(int guild_id, int account_id, int char_id, int f
WBUFL(buf, 6) = account_id;
WBUFL(buf, 10) = char_id;
WBUFB(buf, 14) = flag;
- memcpy(WBUFP(buf, 15), mes, 40);
+ safestrncpy(WBUFP(buf, 15), mes, 40);
memcpy(WBUFP(buf, 55), name, NAME_LENGTH);
mapif->sendall(buf, 55 + NAME_LENGTH);
ShowInfo("int_guild: guild withdraw (%d - %d: %s - %s)\n", guild_id, account_id, name, mes);