diff options
author | Peter Powell <petpow@saberuk.com> | 2019-01-09 15:55:03 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-01-09 15:57:04 +0000 |
commit | aea67c2520b9abbd3be702914b025e1b2a37e046 (patch) | |
tree | 79fc0da999212243367a5f03b4218f4c5c67ca38 /src/modules | |
parent | f2e3fd5952b23209b084bde4f464e6643c8a00ff (diff) |
Fix m_alias not initialising 'active' before use.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_alias.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index 4d1dd65c9..3e00db765 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -107,6 +107,7 @@ class ModuleAlias : public Module ModuleAlias() : botmode(this, "bot") + , active(false) { } |