diff options
-rw-r--r-- | src/map/intif.c | 4 | ||||
-rw-r--r-- | src/map/pet.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index d20afbb08..7d2493d46 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -837,8 +837,8 @@ int intif_guild_notice(int guild_id,const char *mes1,const char *mes2) WFIFOHEAD(inter_fd,186); WFIFOW(inter_fd,0)=0x303e; WFIFOL(inter_fd,2)=guild_id; - memcpy(WFIFOP(inter_fd,6),mes1,MAX_GUILDMES1); - memcpy(WFIFOP(inter_fd,66),mes2,MAX_GUILDMES2); + safestrncpy(WFIFOP(inter_fd, 6), mes1, MAX_GUILDMES1); + safestrncpy(WFIFOP(inter_fd, 66), mes2, MAX_GUILDMES2); WFIFOSET(inter_fd,186); return 0; } diff --git a/src/map/pet.c b/src/map/pet.c index 71d8d1eb3..256324d29 100644 --- a/src/map/pet.c +++ b/src/map/pet.c @@ -679,7 +679,7 @@ int pet_change_name_ack(struct map_session_data *sd, const char *name, int flag) aFree(newname); return 0; } - memcpy(pd->pet.name, newname, NAME_LENGTH); + safestrncpy(pd->pet.name, newname, NAME_LENGTH); aFree(newname); clif->charnameack (0,&pd->bl); pd->pet.rename_flag = 1; |