- 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:
parent
111e75d232
commit
18166d1f87
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user