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

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

Issue 2363733003: Make syzyasan_rtl compile in 64 bit (Closed)
Patch Set: Nits. Created 4 years, 2 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 | « syzygy/agent/asan/block.h ('k') | syzygy/agent/asan/block_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: syzygy/agent/asan/block.cc
diff --git a/syzygy/agent/asan/block.cc b/syzygy/agent/asan/block.cc
index 6f08c0c1529f9bb2f47dbf07fee7cead306822a9..9bdcd56749b2e9c8bdb218bde61bc442405cf707 100644
--- a/syzygy/agent/asan/block.cc
+++ b/syzygy/agent/asan/block.cc
@@ -733,7 +733,7 @@ bool IsValidTicks(uint32_t ticks) {
}
// Determines if a heap id is valid by referring to the runtime.
-bool IsValidHeapId(uint32_t heap_id) {
+bool IsValidHeapId(size_t heap_id) {
AsanRuntime* runtime = AsanRuntime::runtime();
DCHECK_NE(static_cast<AsanRuntime*>(nullptr), runtime);
if (!runtime->HeapIdIsValid(heap_id))
« no previous file with comments | « syzygy/agent/asan/block.h ('k') | syzygy/agent/asan/block_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698