From 6348dc1f0e4c7088654e344dc50c951819bf2b02 Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Thu, 24 Jun 2004 16:09:29 +0000 Subject: [PATCH] Fixed null-pointer crash-on-exit This was SVN commit r599. --- source/simulation/scripting/JSInterface_BaseEntity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/simulation/scripting/JSInterface_BaseEntity.cpp b/source/simulation/scripting/JSInterface_BaseEntity.cpp index cd58904860..65fd5fb694 100755 --- a/source/simulation/scripting/JSInterface_BaseEntity.cpp +++ b/source/simulation/scripting/JSInterface_BaseEntity.cpp @@ -9,7 +9,7 @@ JSClass JSI_BaseEntity::JSI_class = { JS_PropertyStub, JS_PropertyStub, JSI_BaseEntity::getProperty, JSI_BaseEntity::setProperty, JS_EnumerateStub, JS_ResolveStub, - JS_ConvertStub, NULL, + JS_ConvertStub, JS_FinalizeStub, NULL, NULL, NULL, NULL };