diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-13 21:34:29 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-13 21:34:29 +0000 |
commit | 37fd031da06761c8a050105b55d73a8ab499fb74 (patch) | |
tree | 6709b8882806cfe2a4dd20bdcd0aa5581344955e /include/ctables.h | |
parent | 99064f734b9b1513c1d3b3792d6ea8102aae26e1 (diff) |
Remove Command and ModeHandler objects in their destructors; fixes possible pointer leak if a module was not careful when triggering exceptions in its constructor
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11872 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/ctables.h')
-rw-r--r-- | include/ctables.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/ctables.h b/include/ctables.h index c0c094e6f..0cf4c50d2 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -90,7 +90,7 @@ class CoreExport Command : public Extensible public: /** Command name */ - std::string command; + const std::string command; /** Creator module - never NULL */ Module* const creator; @@ -211,9 +211,7 @@ class CoreExport Command : public Extensible return works_before_reg; } - virtual ~Command() - { - } + virtual ~Command(); }; /** A hash of commands used by the core |