http://bugzilla.novell.com/show_bug.cgi?id=533533 Summary: blender-2.48a-2.108: 3 * test in wrong place Classification: openSUSE Product: openSUSE 11.2 Version: Factory Platform: All OS/Version: openSUSE 11.1 Status: NEW Severity: Normal Priority: P5 - None Component: Other AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: dcb314@hotmail.com QAContact: qa@suse.de Found By: --- I just had a look at factory package blender-2.48a-2.108 For source code file blender-2.48a/source/blender/blenkernel/intern/cloth.c, around line 160, function bvhselftree_build_from_cloth is the following source code Cloth *cloth = clmd->clothObject; ClothVertex *verts; MFace *mfaces; float co[12]; if(!clmd) return NULL; This code will crash if clmd is NULL. Suggest put if condition *BEFORE* the use of data, like if(!clmd) return NULL; Cloth *cloth = clmd->clothObject; ClothVertex *verts; MFace *mfaces; float co[12]; The same thing happens in the same file, functions bvhtree_build_from_cloth and cloth_apply_vgroup. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.