Updates:
Cc: [email protected]
Comment #1 on issue 5555 by [email protected]: UMR in
proxy_script_fetcher_unittest
http://code.google.com/p/chromium/issues/detail?id=5555
The only local variables that are in scope are:
bool did_work
and
Task* task
I would change the line
did_work |= !deferred_non_nestable_work_queue_.empty();
to
did_work = did_work || !deferred_non_nestable_work_queue_.empty();
and give it a try. (Also change the other did_work |= line
in the function.)
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Chromium-bugs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/chromium-bugs?hl=en
-~----------~----~----~----~------~----~------~--~---