diff options
author | Adam <Adam@anope.org> | 2010-12-29 20:19:37 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-12-29 20:19:37 -0500 |
commit | d36e53f702f6f166e862c88dd2399bef91e9d1d5 (patch) | |
tree | 310a543eeb0af34f8fc09c38dce940824921d9b3 /modules/protocol/unreal32.cpp | |
parent | a36f14c1bfca63ba744ab310af775cf6d5b81179 (diff) |
Added a ConvertException to be thrown when convertTo fails
Diffstat (limited to 'modules/protocol/unreal32.cpp')
-rw-r--r-- | modules/protocol/unreal32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unreal32.cpp b/modules/protocol/unreal32.cpp index 4c0d79ee2..2993580c7 100644 --- a/modules/protocol/unreal32.cpp +++ b/modules/protocol/unreal32.cpp @@ -977,7 +977,7 @@ bool ChannelModeFlood::IsValid(const Anope::string &value) const if (value[0] != ':' && convertTo<unsigned>(value[0] == '*' ? value.substr(1) : value, rest, false) > 0 && rest[0] == ':' && rest.length() > 1 && convertTo<unsigned>(rest.substr(1), rest, false) > 0 && rest.empty()) return true; } - catch (const CoreException &) { } // convertTo fail + catch (const ConvertException &) { } /* '['<number><1 letter>[optional: '#'+1 letter],[next..]']'':'<number> */ size_t end_bracket = value.find(']', 1); |