From 2d6d69a573c86f20bc0f04444fb689ac0842c607 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Thu, 3 Jan 2008 12:49:07 -0700 Subject: [PATCH] fix thinko in invokeNative2 --- src/compile.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/compile.cpp b/src/compile.cpp index 605e2768bb..b188245932 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -3590,11 +3590,10 @@ invokeNative2(MyThread* t, object method) PROTECT(t, class_); unsigned footprint = methodParameterFootprint(t, method) + 1; - unsigned count = methodParameterCount(t, method) + 1; if (methodFlags(t, method) & ACC_STATIC) { ++ footprint; - ++ count; } + unsigned count = methodParameterCount(t, method) + 2; uintptr_t args[footprint]; unsigned argOffset = 0; @@ -3667,7 +3666,7 @@ invokeNative2(MyThread* t, object method) (function, args, types, - count + 1, + count, footprint * BytesPerWord, returnType); }