Browse Source

- Fixed char-server crash on @changegm use.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10126 54d463be-8e91-2dee-dedb-b68131a5f0ec
skotlex 18 years ago
parent
commit
18166d1f87
3 changed files with 3 additions and 2 deletions
  1. 1 0
      Changelog-Trunk.txt
  2. 1 1
      src/char/int_guild.c
  3. 1 1
      src/char_sql/int_guild.c

+ 1 - 0
Changelog-Trunk.txt

@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 
 2007/04/03
+	* Fixed char-server crash on @changegm use.
 	* Cleaned up mmo_auth, this function wasn't only poorly coded, it also had
 	  a SQL-related memory leak in it!
 	* Corrected the attack_attr_none check being backwards (ie: this config was

+ 1 - 1
src/char/int_guild.c

@@ -879,7 +879,7 @@ int mapif_guild_emblem(struct guild *g) {
 
 int mapif_guild_master_changed(struct guild *g, int aid, int cid)
 {
-	unsigned char buf[12];
+	unsigned char buf[14];
 	WBUFW(buf,0)=0x3843;
 	WBUFL(buf,2)=g->guild_id;
 	WBUFL(buf,6)=aid;

+ 1 - 1
src/char_sql/int_guild.c

@@ -1201,7 +1201,7 @@ int mapif_guild_emblem(struct guild *g)
 
 int mapif_guild_master_changed(struct guild *g, int aid, int cid)
 {
-	unsigned char buf[10];
+	unsigned char buf[14];
 	WBUFW(buf,0)=0x3843;
 	WBUFL(buf,2)=g->guild_id;
 	WBUFL(buf,6)=aid;