fix(event): fix SEvtPushState incorrectly cloning the state

This commit is contained in:
Adam Heinermann 2025-10-03 01:24:14 -07:00 committed by fallenoak
parent 4fa6599807
commit 02287ba3b4
2 changed files with 16 additions and 10 deletions

View file

@ -95,6 +95,7 @@ void CopyIdHashTable(_IDHASHTABLE *dest, _IDHASHTABLE *source) {
*ppDestData = pNewEntry;
*pNewEntry = *pSourceData;
ppDestData = &(*ppDestData)->next;
}
*ppDestData = nullptr;
}