Fix linux specific script engine crash

This commit is contained in:
Clement 2019-08-15 13:07:43 -07:00
parent 4d2e7eaaba
commit 5be1cfcb36

View file

@ -40,10 +40,10 @@ module.exports = {
response = { statusCode: httpRequest.status };
}
callback(error, response, optionalCallbackParameter);
// Break circular reference to httpRequest so the engine can garbage collect it.
httpRequest.onreadystatechange = null;
callback(error, response, optionalCallbackParameter);
}
};
if (typeof options === 'string') {