Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/blenkernel/intern/customdata.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/customdata.cc b/source/blender/blenkernel/intern/customdata.cc
index a5138856d53..62351a31042 100644
--- a/source/blender/blenkernel/intern/customdata.cc
+++ b/source/blender/blenkernel/intern/customdata.cc
@@ -5328,6 +5328,11 @@ void CustomData_blend_read(BlendDataReader *reader, CustomData *data, int count)
}
}
+ /* Ensure allocated size is set to the size of the read array. While this should always be the
+ * case (see #CustomData_blend_write_prepare), there can be some corruption in rare cases (e.g.
+ * files saved between ff3d535bc2a63092 and 945f32e66d6ada2a). */
+ data->maxlayer = data->totlayer;
+
CustomData_update_typemap(data);
}