Fix uninitialized variable use in asset metadata test

Wasn't an issue until 1efc94bb2f added a destructor, which would
attempt to destruct variables at uninitialized memory.
This commit is contained in:
Julian Eisel 2022-11-09 23:04:24 +01:00
parent 95077549c1
commit 32757b2429
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace blender::bke::tests {
TEST(AssetMetadataTest, set_catalog_id)
{
AssetMetaData meta;
AssetMetaData meta{};
const bUUID uuid = BLI_uuid_generate_random();
/* Test trivial values. */