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:
authorSebastian Parborg <darkdefende@gmail.com>2021-01-19 20:12:34 +0300
committerSebastian Parborg <darkdefende@gmail.com>2021-01-19 20:12:34 +0300
commit40e089716b28fc49ce83603ea2df215aed5f6792 (patch)
treedd9897897eb39e3849ec5755cd00c65f2e130709 /source/blender/blenkernel/intern
parent9a32c7130b7c17de54335327d3b75d10f43edca4 (diff)
parent05179a0ba4898c716a4b9b2d5e169c09b57e84fb (diff)
Merge branch 'blender-v2.92-release'
Diffstat (limited to 'source/blender/blenkernel/intern')
-rw-r--r--source/blender/blenkernel/intern/volume.cc15
1 files changed, 9 insertions, 6 deletions
diff --git a/source/blender/blenkernel/intern/volume.cc b/source/blender/blenkernel/intern/volume.cc
index eadb01c43fc..9e7a3736141 100644
--- a/source/blender/blenkernel/intern/volume.cc
+++ b/source/blender/blenkernel/intern/volume.cc
@@ -783,21 +783,22 @@ bool BKE_volume_load(Volume *volume, Main *bmain)
/* Get absolute file path at current frame. */
const char *volume_name = volume->id.name + 2;
- volume_filepath_get(bmain, volume, grids.filepath);
+ char filepath[FILE_MAX];
+ volume_filepath_get(bmain, volume, filepath);
- CLOG_INFO(&LOG, 1, "Volume %s: load %s", volume_name, grids.filepath);
+ CLOG_INFO(&LOG, 1, "Volume %s: load %s", volume_name, filepath);
/* Test if file exists. */
- if (!BLI_exists(grids.filepath)) {
+ if (!BLI_exists(filepath)) {
char filename[FILE_MAX];
- BLI_split_file_part(grids.filepath, filename, sizeof(filename));
+ BLI_split_file_part(filepath, filename, sizeof(filename));
grids.error_msg = filename + std::string(" not found");
CLOG_INFO(&LOG, 1, "Volume %s: %s", volume_name, grids.error_msg.c_str());
return false;
}
/* Open OpenVDB file. */
- openvdb::io::File file(grids.filepath);
+ openvdb::io::File file(filepath);
openvdb::GridPtrVec vdb_grids;
try {
@@ -814,11 +815,13 @@ bool BKE_volume_load(Volume *volume, Main *bmain)
/* Add grids read from file to own vector, filtering out any NULL pointers. */
for (const openvdb::GridBase::Ptr &vdb_grid : vdb_grids) {
if (vdb_grid) {
- VolumeFileCache::Entry template_entry(grids.filepath, vdb_grid);
+ VolumeFileCache::Entry template_entry(filepath, vdb_grid);
grids.emplace_back(template_entry, volume->runtime.default_simplify_level);
}
}
+ BLI_strncpy(grids.filepath, filepath, FILE_MAX);
+
return grids.error_msg.empty();
#else
UNUSED_VARS(bmain, volume);