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

Unified Diff: syzygy/agent/asan/error_info.h

Issue 2527533003: Make SyzyAsan support the allocation > 1GB (Closed)
Patch Set: Do an unguarded alloc if the size > 2GB 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
Index: syzygy/agent/asan/error_info.h
diff --git a/syzygy/agent/asan/error_info.h b/syzygy/agent/asan/error_info.h
index d03b5de19306f37967576043006896ada2c31665..44407b3f31b35d8221d5bff760214201a60421e7 100644
--- a/syzygy/agent/asan/error_info.h
+++ b/syzygy/agent/asan/error_info.h
@@ -114,9 +114,9 @@ struct AsanBlockInfo {
// The address of the header for this block.
const void* header;
// The user size of the block.
- size_t user_size : 30;
+ size_t user_size;
// This is implicitly a BlockState value.
- size_t state : 2;
+ uint8_t state;
// The ID of the allocation thread.
DWORD alloc_tid;
// The ID of the free thread.

Powered by Google App Engine
This is Rietveld 408576698