fix Dictionary and DictionaryIterator memory leaks
This commit is contained in:
parent
70f9b649aa
commit
3607ffaf66
6 changed files with 194 additions and 69 deletions
|
|
@ -2190,7 +2190,7 @@ Dictionary *DictionaryFromString(const FString &string)
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
Dictionary *const dict = new Dictionary;
|
||||
Dictionary *const dict = Create<Dictionary>();
|
||||
|
||||
if (string.IsEmpty())
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue