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:
Marc Burns 2014-02-25 16:45:02 -05:00
parent 04ce8e34fe
commit 1625670173

View File

@ -101,8 +101,7 @@
(succ || function () {}).apply(null, arguments);
};
var wrappedFail = function(err) {
releaseLock();
(fail || function () {})(err);
(fail || function () {})(err);
};
if (!(baselib.arity.isArityMatching(v.racketArity, args.length - 2))) {
var msg = baselib.format.format(
@ -159,8 +158,9 @@
MACHINE.v = oldVal;
MACHINE.a = oldArgcount;
MACHINE.p = oldProc;
// The lock is released by _trampoline in this case.
wrappedFail(e);
};
};
MACHINE._trampoline(v.label, false, releaseLock);
});