From d3074ba4c1cc46bfebd3b09671f92965cab533ed Mon Sep 17 00:00:00 2001 From: Oliver Buchtala Date: Tue, 3 Sep 2013 14:02:52 +0200 Subject: [PATCH] Fix error in SWIG_V8_GetInstancePtr. --- Lib/javascript/v8/javascriptruntime.swg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/javascript/v8/javascriptruntime.swg b/Lib/javascript/v8/javascriptruntime.swg index bfc93a8fb..1c97506da 100644 --- a/Lib/javascript/v8/javascriptruntime.swg +++ b/Lib/javascript/v8/javascriptruntime.swg @@ -195,6 +195,8 @@ int SWIG_V8_GetInstancePtr(v8::Handle valRef, void** ptr) { } *ptr = cdata->swigCObject; + + return SWIG_OK; } void SWIGV8_SetPrivateData(v8::Handle obj, void* ptr, swig_type_info *info, int flags) {