From: Saúl Ibarra Corretgé Date: Wed, 3 Aug 2016 11:52:17 +0000 (+0100) Subject: Remove unneeded flag check X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6ff804b9a5c5efb9356cc0cb441b14403fa53a8;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Remove unneeded flag check stop_flag is only set if uv_stop was called, which is never the case, so skipping the test should be harmless. --- diff --git a/atom/common/node_bindings.cc b/atom/common/node_bindings.cc index 2b7fb39..2207046 100644 --- a/atom/common/node_bindings.cc +++ b/atom/common/node_bindings.cc @@ -232,7 +232,7 @@ void NodeBindings::UvRunOnce() { // Deal with uv events. int r = uv_run(uv_loop_, UV_RUN_NOWAIT); - if (r == 0 || uv_loop_->stop_flag != 0) + if (r == 0) message_loop_->QuitWhenIdle(); // Quit from uv. // Tell the worker thread to continue polling.