diff options
author | Adam <Adam@anope.org> | 2012-04-25 14:29:50 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-04-25 14:29:50 -0400 |
commit | 1081ecdae80d10bcac0f8543d665c5579f271e61 (patch) | |
tree | 7b2665bc103c7306b2ec08afc46bac5e7689eb38 /modules/commands/ms_cancel.cpp | |
parent | 2370c16f1e9d395e47fc8963b1c301dff160c547 (diff) |
Fixed non-debug build
Diffstat (limited to 'modules/commands/ms_cancel.cpp')
-rw-r--r-- | modules/commands/ms_cancel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/ms_cancel.cpp b/modules/commands/ms_cancel.cpp index 059ca2f06..f6f863e71 100644 --- a/modules/commands/ms_cancel.cpp +++ b/modules/commands/ms_cancel.cpp @@ -39,8 +39,8 @@ class CommandMSCancel : public Command source.Reply(ischan ? CHAN_X_NOT_REGISTERED : _(NICK_X_NOT_REGISTERED), nname.c_str()); else { - ChannelInfo *ci; - NickAlias *na; + ChannelInfo *ci = NULL; + NickAlias *na = NULL; if (ischan) ci = cs_findchan(nname); else |