Fix string append crash on 0 len

This commit is contained in:
Doyle Thai 2018-01-06 16:53:53 +11:00
parent fd00b9071c
commit 7809185daa
2 changed files with 5 additions and 1 deletions

4
dqn.h
View File

@ -5456,6 +5456,10 @@ bool DqnString::Expand(const i32 newMax)
DQN_FILE_SCOPE bool DqnStringInternal_Append(DqnString *const str, char const *const cstr,
i32 const bytesToCopy)
{
if (bytesToCopy <= 0)
{
return true;
}
// Check and reserve space if needed
i32 totalLen = str->len + bytesToCopy;