While testing the other my previous commit (removing deformflag stuff), I
noticed that trying to change set a parent object for the current object (via
the Object Properties) would cause the current object to "blow up", and for
cyclic dependency warnings to be spewed to the console.

Adding a dummy usage of one of the vars here seems to solve it. Perhaps a case
of weirdo compiler optimisations?
This commit is contained in:
Joshua Leung
2012-05-06 05:03:58 +00:00
parent 364388b9f2
commit 6f09dffa36

View File

@@ -383,8 +383,11 @@ static void rna_Object_parent_set(PointerRNA *ptr, PointerRNA value)
{
Object *ob = (Object*)ptr->data;
Object *par = (Object*)value.data;
ED_object_parent(ob, par, ob->partype, ob->parsubstr);
/* NOTE: this dummy check here prevents this method causing weird runtime errors on mingw 4.6.2 */
if (ob) {
ED_object_parent(ob, par, ob->partype, ob->parsubstr);
}
}
static void rna_Object_parent_type_set(PointerRNA *ptr, int value)