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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-10-05 23:56:32 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-10-05 23:56:32 +0400
commitc7882ec3bb4d6895414ed7a0623074c16201284e (patch)
treedacfd58017ba8dad2b7aaa2c6a3f480149140185 /source/blender/blenkernel/intern/customdata.c
parentb20c3f97a49e57625fbc917236dd726c4e0a8b8d (diff)
Fix for my last customdata fix, accidentally left in comments.
Diffstat (limited to 'source/blender/blenkernel/intern/customdata.c')
-rw-r--r--source/blender/blenkernel/intern/customdata.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/customdata.c b/source/blender/blenkernel/intern/customdata.c
index f50dbb47a44..8a74f4719d5 100644
--- a/source/blender/blenkernel/intern/customdata.c
+++ b/source/blender/blenkernel/intern/customdata.c
@@ -1969,11 +1969,11 @@ static void CustomData_copy_data_layer(const CustomData *source, CustomData *des
dest_offset = dest_index * typeInfo->size;
if (!src_data || !dest_data) {
- //if (!(src_data == NULL && dest_data == NULL)) {
+ if (!(src_data == NULL && dest_data == NULL)) {
printf("%s: warning null data for %s type (%p --> %p), skipping\n",
__func__, layerType_getName(source->layers[src_i].type),
(void *)src_data, (void *)dest_data);
- //}
+ }
return;
}