Added the forgotten size update if copied less chars.

merge-requests/24/head
Nemirtingas 2019-08-25 00:29:05 +02:00
parent 9c04ce6a81
commit f1118030e8
1 changed files with 1 additions and 0 deletions

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
{