diff options
| author | Adam <Adam@anope.org> | 2014-03-04 04:14:17 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2014-03-04 04:15:32 -0500 |
| commit | 09bec79b473fad40268f7b25b92c4979563829c4 (patch) | |
| tree | e5e70c2fd3c6bfbcdb3fbd571c3c0191741b3caa /modules/pseudoclients | |
| parent | 55a5affcb8251c6ef677d78ea848dc8d26b90471 (diff) | |
Fix 2 crashes from removing the permanent channel mode from channels which do not exist
Diffstat (limited to 'modules/pseudoclients')
| -rw-r--r-- | modules/pseudoclients/chanserv.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/pseudoclients/chanserv.cpp b/modules/pseudoclients/chanserv.cpp index 388a14649..250296f55 100644 --- a/modules/pseudoclients/chanserv.cpp +++ b/modules/pseudoclients/chanserv.cpp @@ -274,8 +274,11 @@ class ChanServCore : public Module, public ChanServService "lists and settings for any channel.")); } - void OnCheckModes(Channel *c) anope_override + void OnCheckModes(Reference<Channel> &c) anope_override { + if (!c) + return; + if (c->ci) c->SetMode(c->ci->WhoSends(), "REGISTERED", "", false); else |
