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/lattice.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/lattice.c b/source/blender/blenkernel/intern/lattice.c
index 8b509c77155..dfab5a0bb26 100644
--- a/source/blender/blenkernel/intern/lattice.c
+++ b/source/blender/blenkernel/intern/lattice.c
@@ -623,8 +623,8 @@ static int calc_curve_deform(Object *par, float co[3],
const bool is_neg_axis = (axis > 2);
/* to be sure, mostly after file load */
- if (par->curve_cache->path == NULL) {
- return 0; // happens on append...
+ if (ELEM(NULL, par->curve_cache, par->curve_cache->path)) {
+ return 0; // happens on append and cyclic dependencies...
}
/* options */