Browse Source

Fixed bugreport:6357 where buf is attempt to be used outside it bounds..

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16528 54d463be-8e91-2dee-dedb-b68131a5f0ec
rud0lp20 12 years ago
parent
commit
bede2960d3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/map/clif.c

+ 1 - 1
src/map/clif.c

@@ -16154,7 +16154,7 @@ void clif_parse_SkillSelectMenu(int fd, struct map_session_data *sd) {
  *------------------------------------------*/
 void clif_talisman(struct map_session_data *sd,short type)
 {
-	unsigned char buf[8];
+	unsigned char buf[10];
 
 	nullpo_retv(sd);