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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2016-10-30 05:42:46 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2016-10-30 05:42:46 +0300
commitce785868a56a1446750f5af1779f7623ca462ec2 (patch)
treef7bbf34ae713f1ec061cc4b634ebf4484474499d /source/blender/modifiers
parentb2974d7ab79a257f8628c24c05d43da25791018d (diff)
Fix compile errors for when WITH_ALEMBIC is OFF.
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_meshsequencecache.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_meshsequencecache.c b/source/blender/modifiers/intern/MOD_meshsequencecache.c
index cf137784e65..d25e8e38de3 100644
--- a/source/blender/modifiers/intern/MOD_meshsequencecache.c
+++ b/source/blender/modifiers/intern/MOD_meshsequencecache.c
@@ -78,7 +78,9 @@ static void freeData(ModifierData *md)
}
if (mcmd->reader) {
+#ifdef WITH_ALEMBIC
CacheReader_free(mcmd->reader);
+#endif
}
}