summaryrefslogtreecommitdiff
path: root/modules/commands/cs_seen.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-03-27 19:14:55 -0400
committerAdam <Adam@anope.org>2012-03-27 19:14:55 -0400
commit12a6a27b52a3520c1f41a1d4d6b8e3ef25fafb23 (patch)
tree31734df3f40e076b2ff0a21297109f90e3260146 /modules/commands/cs_seen.cpp
parent31a0e673b2028f3dad67cd1e6f0f5410d0dde56d (diff)
parent8d0b4a1bf53788494fe0531dd62b4dd2ee655e9b (diff)
Merge branch '1.9' of anope.git.sf.net:/gitroot/anope/anope into 1.9
Diffstat (limited to 'modules/commands/cs_seen.cpp')
-rw-r--r--modules/commands/cs_seen.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/commands/cs_seen.cpp b/modules/commands/cs_seen.cpp
index 8466cf82c..0143f50d6 100644
--- a/modules/commands/cs_seen.cpp
+++ b/modules/commands/cs_seen.cpp
@@ -346,7 +346,8 @@ class CSSeen : public Module
void OnUserConnect(dynamic_reference<User> &u, bool &exempt) anope_override
{
- UpdateUser(u, NEW, u->nick, "", "", "");
+ if (u)
+ UpdateUser(u, NEW, u->nick, "", "", "");
}
void OnUserNickChange(User *u, const Anope::string &oldnick) anope_override