| Index: syzygy/agent/asan/heaps/simple_block_heap_unittest.cc
|
| diff --git a/syzygy/agent/asan/heaps/simple_block_heap_unittest.cc b/syzygy/agent/asan/heaps/simple_block_heap_unittest.cc
|
| index 364f93863b472926eb3761fe60876120ccb7f687..8c5b5f973a2f0c40fec86909160c6532340ba2ae 100644
|
| --- a/syzygy/agent/asan/heaps/simple_block_heap_unittest.cc
|
| +++ b/syzygy/agent/asan/heaps/simple_block_heap_unittest.cc
|
| @@ -56,14 +56,14 @@ TEST(SimpleBlockHeapTest, EndToEnd) {
|
| // Allocate and free a zero-sized allocation. This should succeed
|
| // by definition.
|
| void* alloc = h.AllocateBlock(0, 0, 0, &layout);
|
| - BlockInitialize(layout, alloc, false, &block);
|
| + BlockInitialize(layout, alloc, &block);
|
| EXPECT_TRUE(h.FreeBlock(block));
|
|
|
| // Make a bunch of different sized allocations.
|
| BlockInfoSet blocks;
|
| for (uint32_t i = 1; i < 1024 * 1024; i <<= 1) {
|
| void* alloc = h.AllocateBlock(i, 0, 0, &layout);
|
| - BlockInitialize(layout, alloc, false, &block);
|
| + BlockInitialize(layout, alloc, &block);
|
| blocks.insert(block);
|
| }
|
|
|
|
|