Remove trailing comma after reading strParseIntWithKey

This commit is contained in:
Vasilii Rogin 2023-03-26 19:01:28 +03:00
parent e23b39abaa
commit 058e4e743a
1 changed files with 4 additions and 0 deletions

View File

@ -208,6 +208,10 @@ int strParseIntWithKey(char** stringPtr, const char* key, int* valuePtr, const c
*(str + v4) = tmp2;
*(str + v2) = tmp1;
if (**stringPtr == ',') {
*stringPtr = *stringPtr + 1;
}
return result;
}