Check if scriptingEngine is not null in abort().

This commit is contained in:
hns 2002-11-08 14:19:57 +00:00
parent 59330c9a01
commit 18fc2e8cd2

View file

@ -647,7 +647,8 @@ public final class RequestEvaluator implements Runnable {
Transactor t = rtx;
// let the scripting engine know that the
// current transaction is being aborted.
scriptingEngine.abort ();
if (scriptingEngine != null)
scriptingEngine.abort ();
rtx = null;
if (t != null) {
if (reqtype != NONE) {