X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/a55e57248b809678d3ac3ac716972def07c2c493..90a3c35b295b07ebe3793bf5d3b882c3c1a5dc7c:/src/s_gline.c diff --git a/src/s_gline.c b/src/s_gline.c index 0764c40..8d7027b 100644 --- a/src/s_gline.c +++ b/src/s_gline.c @@ -154,9 +154,9 @@ expire_pending_glines() CurrentTime) || find_is_glined(glp_ptr->host, glp_ptr->user)) { - MyFree(glp_ptr->reason1); - MyFree(glp_ptr->reason2); - MyFree(glp_ptr); + rb_free(glp_ptr->reason1); + rb_free(glp_ptr->reason2); + rb_free(glp_ptr); rb_dlinkDestroy(pending_node, &pending_glines); } }