From 2e3b58821ce6c803e3a8af1e94c403534712c758 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Sun, 14 Nov 2021 02:31:08 +0700 Subject: [PATCH] Fix iterator not being deallocated (again) --- sources/Data/Database/Local/DBRecord.uc | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/Data/Database/Local/DBRecord.uc b/sources/Data/Database/Local/DBRecord.uc index e6d8a42..5137558 100644 --- a/sources/Data/Database/Local/DBRecord.uc +++ b/sources/Data/Database/Local/DBRecord.uc @@ -935,6 +935,7 @@ private final function FromAssociativeArray(AssociativeArray source) SetItem(storage.length, ConvertObjectToItem(iter.Get()), nextKey); } } + iter.FreeSelf(); } // Converts `AcediaObject` into it's internal representation.