diff options
author | Sadie Powell <sadie@witchery.services> | 2024-04-29 08:36:23 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-04-29 08:36:23 +0100 |
commit | 1f9a197b188b49ac65580df996b7f8dd63a23240 (patch) | |
tree | 48fc83ffe46889f9ed058d010bd7ca2ac7949b44 /modules/database/db_flatfile.cpp | |
parent | 1647968c5083ae41ebaac259bddc83b27300830f (diff) | |
parent | 0c5bf51378bca2c671722940bea188c783c2897b (diff) |
Merge branch '2.0' into 2.1.
Diffstat (limited to 'modules/database/db_flatfile.cpp')
-rw-r--r-- | modules/database/db_flatfile.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/database/db_flatfile.cpp b/modules/database/db_flatfile.cpp index 471c5fc00..1f99c922a 100644 --- a/modules/database/db_flatfile.cpp +++ b/modules/database/db_flatfile.cpp @@ -311,6 +311,8 @@ public: for (auto *base : items) { Serialize::Type *s_type = base->GetSerializableType(); + if (!s_type) + continue; data.fs = databases[s_type->GetOwner()]; if (!data.fs || !data.fs->is_open()) |