X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/a55e57248b809678d3ac3ac716972def07c2c493..90a3c35b295b07ebe3793bf5d3b882c3c1a5dc7c:/modules/m_away.c diff --git a/modules/m_away.c b/modules/m_away.c index e6ff385..d95d0f0 100644 --- a/modules/m_away.c +++ b/modules/m_away.c @@ -91,7 +91,7 @@ m_away(struct Client *client_p, struct Client *source_p, int parc, const char *p ":%s AWAY", use_id(source_p)); sendto_server(client_p, NULL, NOCAPS, CAP_TS6, ":%s AWAY", source_p->name); - MyFree(away); + rb_free(away); source_p->user->away = NULL; } if(MyConnect(source_p)) @@ -127,7 +127,7 @@ m_away(struct Client *client_p, struct Client *source_p, int parc, const char *p ":%s AWAY :%s", source_p->name, awy2); } else - MyFree(away); + rb_free(away); DupString(away, awy2);