diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-13 20:29:53 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-13 20:29:53 +0000 |
commit | 5c53f05f766458af333a67b22733ae680fba788a (patch) | |
tree | 2a29dcd2438d0169f35a95fcfaae1e949e9b5ef7 /include/command_parse.h | |
parent | 92bfb4ef78d392d22abd2b867796be24d1dc901e (diff) |
If inspircd crashes in std::string destructor in CommandParser::ProcessCommand, take away all std::string's to make the bug manifest elsewhere, so maybe we can spot it
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5232 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/command_parse.h')
-rw-r--r-- | include/command_parse.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/command_parse.h b/include/command_parse.h index 40c3425fb..682489ad5 100644 --- a/include/command_parse.h +++ b/include/command_parse.h @@ -38,6 +38,10 @@ class CommandParser : public classbase */ InspIRCd* ServerInstance; + /** Parameter buffer + */ + std::vector<std::string> para; + /** Process a parameter string into a list of items * @param command_p The output list of items * @param parameters The input string |