- 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
This commit is contained in:
skotlex 2007-04-02 19:10:41 +00:00
parent 111e75d232
commit 18166d1f87
3 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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;

View File

@ -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;