Added the forgotten size update if copied less chars.

This commit is contained in:
Nemirtingas 2019-08-25 00:29:05 +02:00
parent 9c04ce6a81
commit f1118030e8

View File

@ -666,6 +666,7 @@ bool GetItemDefinitionProperty( SteamItemDef_t iDefinition, const char *pchPrope
{
// copy what we can
strncpy(pchValueBuffer, val.c_str(), *punValueBufferSizeOut);
*punValueBufferSizeOut = std::min(static_cast<uint32>(val.length() + 1), *punValueBufferSizeOut);
}
else
{