More sync object fixes

This commit is contained in:
MysterD 2023-03-27 12:51:10 -07:00
parent de6e783c20
commit ca94b7387e
1 changed files with 2 additions and 0 deletions

View File

@ -81,6 +81,7 @@ void sync_objects_clear(void) {
} }
sFreeingAll = false; sFreeingAll = false;
hmfree(sSoMap); hmfree(sSoMap);
hmdefault(sSoMap, NULL);
} }
void sync_object_forget(u32 syncId) { void sync_object_forget(u32 syncId) {
@ -237,6 +238,7 @@ void sync_object_init_field_with_size(struct Object *o, void* field, u8 size) {
///////////// /////////////
struct SyncObject* sync_object_get(u32 syncId) { struct SyncObject* sync_object_get(u32 syncId) {
if (syncId == 0) { return NULL; }
return hmget(sSoMap, syncId); return hmget(sSoMap, syncId);
} }