1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 16:45:20 +02:00

Prevent infinite loop with invalid Inventory format

This commit is contained in:
kwolekr
2013-03-27 23:27:16 -04:00
parent a782a88913
commit d01b74d00a

View File

@@ -903,6 +903,10 @@ void Inventory::deSerialize(std::istream &is)
m_lists.push_back(list); m_lists.push_back(list);
} }
else
{
throw SerializationError("invalid inventory specifier");
}
} }
} }