mirror of
https://github.com/corda/corda.git
synced 2025-04-05 10:27:11 +00:00
fix thinko in invokeNative2
This commit is contained in:
parent
651a27f73e
commit
2d6d69a573
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user