Commit e093f3ba authored by jochen's avatar jochen Committed by Commit bot

Add back missing allow handle deref scope

BUG=v8:3608
R=svenpanne@chromium.org
LOG=n

Review URL: https://codereview.chromium.org/935453006

Cr-Commit-Position: refs/heads/master@{#26828}
parent 35cc692a
......@@ -169,7 +169,10 @@ OptimizedCompileJob* OptimizingCompilerThread::NextInput(
input_queue_length_--;
if (check_if_flushing) {
if (static_cast<StopFlag>(base::Acquire_Load(&stop_thread_)) != CONTINUE) {
if (!job->info()->is_osr()) DisposeOptimizedCompileJob(job, true);
if (!job->info()->is_osr()) {
AllowHandleDereference allow_handle_dereference;
DisposeOptimizedCompileJob(job, true);
}
return NULL;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment