main sync #3

Merged
Patrick Busch merged 318 commits from blender/blender:main into main 2023-03-17 15:52:21 +01:00
Showing only changes of commit 2bfe9b50c6 - Show all commits

View File

@ -54,8 +54,8 @@ void BLI_array_store_at_size_clear(struct BArrayStore_AtSize *bs_stride)
} }
} }
MEM_freeN(bs_stride->stride_table); /* It's possible this table was never used. */
bs_stride->stride_table = NULL; MEM_SAFE_FREE(bs_stride->stride_table);
bs_stride->stride_table_len = 0; bs_stride->stride_table_len = 0;
} }