From 064ef3f00f286a5bb4b17c83cc8246c0ef0b123d Mon Sep 17 00:00:00 2001 From: Mitchell Stokes Date: Tue, 13 May 2014 22:26:03 -0700 Subject: Fix T40182: Crash when using KX_GameObject.rayCast/rayCastTo(). Missed another parent->release(). --- source/gameengine/Ketsji/KX_GameObject.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'source') diff --git a/source/gameengine/Ketsji/KX_GameObject.cpp b/source/gameengine/Ketsji/KX_GameObject.cpp index 9ea76980c20..9e8e58e9dfd 100644 --- a/source/gameengine/Ketsji/KX_GameObject.cpp +++ b/source/gameengine/Ketsji/KX_GameObject.cpp @@ -3253,8 +3253,6 @@ KX_PYMETHODDEF_DOC(KX_GameObject, rayCastTo, KX_GameObject *parent = GetParent(); if (!spc && parent) spc = parent->GetPhysicsController(); - if (parent) - parent->Release(); m_pHitObject = NULL; if (propName) @@ -3399,8 +3397,6 @@ KX_PYMETHODDEF_DOC(KX_GameObject, rayCast, KX_GameObject *parent = GetParent(); if (!spc && parent) spc = parent->GetPhysicsController(); - if (parent) - parent->Release(); m_pHitObject = NULL; if (propName) -- cgit v1.2.3