diff options
| author | 2008-07-20 08:53:56 +0000 | |
|---|---|---|
| committer | 2008-07-20 08:53:56 +0000 | |
| commit | ca781714c1651a9e7042eb930c6b117449f8e1fc (patch) | |
| tree | 626d56d3997cfffcfaecf8461ed6cfceed74b200 /src/modules/m_blockcaps.cpp | |
| parent | Fix total mess of makefile dependency macros (all depending on stuff they don... (diff) | |
| download | inspircd++-ca781714c1651a9e7042eb930c6b117449f8e1fc.tar.gz inspircd++-ca781714c1651a9e7042eb930c6b117449f8e1fc.tar.bz2 inspircd++-ca781714c1651a9e7042eb930c6b117449f8e1fc.zip | |
Fixes to some stuff that writes on memory it shouldn't (thanks psychon).
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10047 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_blockcaps.cpp')
| -rw-r--r-- | src/modules/m_blockcaps.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index 23658a9fa..31542befd 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -107,7 +107,7 @@ public: std::string hmap = Conf.ReadValue("blockcaps", "capsmap", 0); if (hmap.empty()) hmap = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; - memset(&capsmap, 0, 255); + memset(capsmap, 0, sizeof(capsmap)); for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++) capsmap[(unsigned char)*n] = 1; if (percent < 1 || percent > 100) |
