mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
[Tasks] Crash fix with data input sanitization (#2629)
This commit is contained in:
parent
1d06a4117a
commit
3dfeda9cea
@ -192,7 +192,7 @@ std::string Strings::Escape(const std::string &s)
|
||||
bool Strings::IsNumber(const std::string &s)
|
||||
{
|
||||
try {
|
||||
auto r = stod(s);
|
||||
auto r = stoi(s);
|
||||
return true;
|
||||
}
|
||||
catch (std::exception &) {
|
||||
|
||||
@ -232,7 +232,9 @@ bool TaskManager::LoadTasks(int single_task)
|
||||
);
|
||||
|
||||
for (auto &&e : zones) {
|
||||
ad->zone_ids.push_back(std::stoi(e));
|
||||
if (Strings::IsNumber(e)) {
|
||||
ad->zone_ids.push_back(std::stoi(e));
|
||||
}
|
||||
}
|
||||
|
||||
ad->optional = a.optional;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user