From d2a5339ddf5c64da08c0f26383281ef2385a1d11 Mon Sep 17 00:00:00 2001 From: Jackmcbarn Date: Mon, 28 Mar 2011 16:20:48 -0400 Subject: Fix sepstream logic when multiple consecutive separators are encountered --- src/hashcomp.cpp | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) (limited to 'src/hashcomp.cpp') diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp index 0ef8d025f..df03d0a58 100644 --- a/src/hashcomp.cpp +++ b/src/hashcomp.cpp @@ -305,23 +305,14 @@ bool irc::sepstream::GetToken(std::string &token) { std::string::iterator lsp = last_starting_position; - while (n != tokens.end()) + for(; n != tokens.end(); ++n) { - if ((*n == sep) || (n+1 == tokens.end())) + if(*n == sep || n+1 == tokens.end()) { last_starting_position = n+1; - token = std::string(lsp, n+1 == tokens.end() ? n+1 : n++); - - while ((token.length()) && (token.find_last_of(sep) == token.length() - 1)) - token.erase(token.end() - 1); - - if (token.empty()) - n++; - - return n == tokens.end() ? false : true; + token = std::string(lsp, n+1 == tokens.end() ? ++n : n++); + return true; } - - n++; } token = ""; @@ -335,7 +326,7 @@ const std::string irc::sepstream::GetRemaining() bool irc::sepstream::StreamEnd() { - return ((n + 1) == tokens.end()); + return n == tokens.end(); } irc::sepstream::~sepstream() -- cgit v1.2.3