summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/users.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/users.c b/src/users.c
index 1ba88f426..f203222fe 100644
--- a/src/users.c
+++ b/src/users.c
@@ -36,6 +36,17 @@ User::User(const std::string &nick)
// XXX: we should also duplicate-check here.
+ /* we used to do this by calloc, no more. */
+ this->next = NULL;
+ this->prev = NULL;
+ username = host = hostip = vhost = vident = realname = nickTrack = uid = NULL;
+ server = NULL;
+ na = NULL;
+ chans = NULL;
+ founder_chans = NULL;
+ moduleData = NULL;
+ timestamp = my_signon = svid = mode = invalid_pw_time = lastmemosend = lastnickreg = lastmail = 0;
+
strscpy(this->nick, nick.c_str(), NICKMAX);
list = &userlist[HASH(this->nick)];
this->next = *list;