Index: tracing/tracing/extras/importer/v8/codemap.html |
diff --git a/tracing/tracing/extras/importer/v8/codemap.html b/tracing/tracing/extras/importer/v8/codemap.html |
index 96fd00d66661d9c2785baf2396691d7a5b1e1018..898759f8a948f0829a928b19a3289a2911320c89 100644 |
--- a/tracing/tracing/extras/importer/v8/codemap.html |
+++ b/tracing/tracing/extras/importer/v8/codemap.html |
@@ -163,8 +163,9 @@ tr.exportTo('tr.e.importer.v8', function() { |
*/ |
CodeMap.prototype.findEntryInLibraries = function(addr) { |
var pageAddr = addr >>> CodeMap.PAGE_ALIGNMENT; |
- if (pageAddr in this.pages_) |
+ if (pageAddr in this.pages_) { |
return this.findInTree_(this.libraries_, addr); |
+ } |
return undefined; |
}; |