NetworkSystem: use cached string lengths where possible

Avoid doing internal strlen() when length is already known.
This commit is contained in:
Kawe Mazidjatari 2025-02-07 21:48:50 +01:00
parent bfe96e9ccd
commit 73b517600d

View File

@ -107,7 +107,7 @@ void CBanSystem::SaveList(void) const
rapidjson::Value obj(rapidjson::kObjectType);
obj.AddMember("ipAddress", rapidjson::Value(banned.m_Address.String(), allocator), allocator);
obj.AddMember("ipAddress", rapidjson::Value(banned.m_Address.String(), banned.m_Address.Length(), allocator), allocator);
obj.AddMember("nucleusId", banned.m_NucleusID, allocator);
document.AddMember(rapidjson::Value(idx, allocator), obj, allocator);