[Bf-blender-cvs] [e3b1d562a77] master: Fix (unreported) missing Image usercount increase when copying UVProject modifier.

Bastien Montagne noreply at git.blender.org
Tue Jun 20 13:46:26 CEST 2017


Commit: e3b1d562a770edf397cb4423579c5d715c67da9c
Author: Bastien Montagne
Date:   Mon Jun 19 15:05:08 2017 +0200
Branches: master
https://developer.blender.org/rBe3b1d562a770edf397cb4423579c5d715c67da9c

Fix (unreported) missing Image usercount increase when copying UVProject modifier.

===================================================================

M	source/blender/modifiers/intern/MOD_uvproject.c

===================================================================

diff --git a/source/blender/modifiers/intern/MOD_uvproject.c b/source/blender/modifiers/intern/MOD_uvproject.c
index 78dc1ea8bcb..01468c1143a 100644
--- a/source/blender/modifiers/intern/MOD_uvproject.c
+++ b/source/blender/modifiers/intern/MOD_uvproject.c
@@ -45,6 +45,7 @@
 
 
 #include "BKE_camera.h"
+#include "BKE_library.h"
 #include "BKE_library_query.h"
 #include "BKE_mesh.h"
 #include "BKE_DerivedMesh.h"
@@ -70,9 +71,12 @@ static void copyData(ModifierData *md, ModifierData *target)
 {
 #if 0
 	UVProjectModifierData *umd = (UVProjectModifierData *) md;
-	UVProjectModifierData *tumd = (UVProjectModifierData *) target;
 #endif
+	UVProjectModifierData *tumd = (UVProjectModifierData *) target;
+
 	modifier_copyData_generic(md, target);
+
+	id_us_plus((ID *)tumd->image);
 }
 
 static CustomDataMask requiredDataMask(Object *UNUSED(ob), ModifierData *UNUSED(md))




More information about the Bf-blender-cvs mailing list