Fix lock double-release.
The exclusive lock for from-JavaScript closure invocation was released twice when an exception was raised during evaluation.
This commit is contained in:
parent
04ce8e34fe
commit
1625670173
|
@ -101,7 +101,6 @@
|
|||
(succ || function () {}).apply(null, arguments);
|
||||
};
|
||||
var wrappedFail = function(err) {
|
||||
releaseLock();
|
||||
(fail || function () {})(err);
|
||||
};
|
||||
if (!(baselib.arity.isArityMatching(v.racketArity, args.length - 2))) {
|
||||
|
@ -159,6 +158,7 @@
|
|||
MACHINE.v = oldVal;
|
||||
MACHINE.a = oldArgcount;
|
||||
MACHINE.p = oldProc;
|
||||
// The lock is released by _trampoline in this case.
|
||||
wrappedFail(e);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user