From: w00t Date: Wed, 13 Feb 2008 16:14:54 +0000 (+0000) Subject: Fix a silly crash I caused. X-Git-Tag: v2.0.23~3856 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=21a5b7c3ccf396ec78a8f9e9b5ef6870709961d8;p=user%2Fhenk%2Fcode%2Finspircd.git Fix a silly crash I caused. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8919 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/include/ctables.h b/include/ctables.h index 1464494a3..ec49a7549 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -96,7 +96,7 @@ class CoreExport Command : public Extensible * be allowed before the user is 'registered' (has sent USER, * NICK, optionally PASS, and been resolved). */ - Command(InspIRCd* Instance, const std::string &cmd, char *flags, int minpara, int before_reg = false, int penalty = 1) : ServerInstance(Instance), command(cmd), flags_needed(*flags), min_params(minpara), disabled(false), works_before_reg(before_reg), Penalty(penalty) + Command(InspIRCd* Instance, const std::string &cmd, char *flags, int minpara, int before_reg = false, int penalty = 1) : ServerInstance(Instance), command(cmd), flags_needed(flags ? *flags : 0), min_params(minpara), disabled(false), works_before_reg(before_reg), Penalty(penalty) { use_count = 0; total_bytes = 0;