Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Unified Diff: src/debug/debug.cc

Issue 2758563002: [gn] Enable stricter build flags (Closed)
Patch Set: Address comment Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/d8.cc ('k') | src/extensions/statistics-extension.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug.cc
diff --git a/src/debug/debug.cc b/src/debug/debug.cc
index 76ded2cc7ada18cb7d511d55d315cf80733f799f..95fdae71f3a0586f27e50dc9b972d926e2c5c736 100644
--- a/src/debug/debug.cc
+++ b/src/debug/debug.cc
@@ -1291,7 +1291,7 @@ bool Debug::PrepareFunctionForBreakPoints(Handle<SharedFunctionInfo> shared) {
HeapIterator iterator(isolate_->heap());
HeapObject* obj;
- while ((obj = iterator.next())) {
+ while ((obj = iterator.next()) != nullptr) {
if (obj->IsJSFunction()) {
JSFunction* function = JSFunction::cast(obj);
if (!function->Inlines(*shared)) continue;
@@ -1637,7 +1637,7 @@ Handle<FixedArray> Debug::GetLoadedScripts() {
{
Script::Iterator iterator(isolate_);
Script* script;
- while ((script = iterator.Next())) {
+ while ((script = iterator.Next()) != nullptr) {
if (script->HasValidSource()) results->set(length++, script);
}
}
« no previous file with comments | « src/d8.cc ('k') | src/extensions/statistics-extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698