[Bf-blender-cvs] [b047287] soc-2014-shapekey: More picky little 'master-synchronization'

Bastien Montagne noreply at git.blender.org
Sun Oct 19 20:28:27 CEST 2014


Commit: b04728785f315efb21f1cf54df59f9d702d2f022
Author: Bastien Montagne
Date:   Sun Oct 19 20:27:55 2014 +0200
Branches: soc-2014-shapekey
https://developer.blender.org/rBb04728785f315efb21f1cf54df59f9d702d2f022

More picky little 'master-synchronization'

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

M	source/blender/blenkernel/intern/key.c

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

diff --git a/source/blender/blenkernel/intern/key.c b/source/blender/blenkernel/intern/key.c
index 966c3b6..c10d515 100644
--- a/source/blender/blenkernel/intern/key.c
+++ b/source/blender/blenkernel/intern/key.c
@@ -249,7 +249,7 @@ Key *BKE_key_copy_nolib(Key *key)
 	kbn = keyn->block.first;
 	while (kbn) {
 		
-		if (kb->data) kbn->data = MEM_dupallocN(kb->data);
+		if (kbn->data) kbn->data = MEM_dupallocN(kbn->data);
 		if (kb == key->refkey) keyn->refkey = kbn;
 		if (kb == key->scratch.origin) keyn->scratch.origin = kbn;




More information about the Bf-blender-cvs mailing list