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

Unified Diff: syzygy/agent/asan/heap_checker.cc

Issue 2508333002: Remove the is_nested bit from the BlockInfo structure. (Closed)
Patch Set: Address Siggi's comments. Created 4 years, 1 month 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 | « syzygy/agent/asan/error_info_unittest.cc ('k') | syzygy/agent/asan/heap_checker_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: syzygy/agent/asan/heap_checker.cc
diff --git a/syzygy/agent/asan/heap_checker.cc b/syzygy/agent/asan/heap_checker.cc
index 2b93f4f12351ab7e2576ac9b43670f2f861701f0..b19517a99ff7d7332aa5faf8dd660320aa342bf5 100644
--- a/syzygy/agent/asan/heap_checker.cc
+++ b/syzygy/agent/asan/heap_checker.cc
@@ -56,8 +56,7 @@ void HeapChecker::GetCorruptRangesInSlab(const uint8_t* lower_bound,
DCHECK_NE(static_cast<CorruptRangesVector*>(nullptr), corrupt_ranges);
// An overflowed |upper_bound| is handled correctly by the ShadowWalker.
- ShadowWalker shadow_walker(
- shadow_, false, lower_bound, upper_bound);
+ ShadowWalker shadow_walker(shadow_, lower_bound, upper_bound);
AsanCorruptBlockRange* current_corrupt_range = nullptr;
« no previous file with comments | « syzygy/agent/asan/error_info_unittest.cc ('k') | syzygy/agent/asan/heap_checker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698