| Index: syzygy/agent/asan/heap_checker.h
|
| diff --git a/syzygy/agent/asan/heap_checker.h b/syzygy/agent/asan/heap_checker.h
|
| index 980208bb9386ad6a24267106ba5295b479c66646..49bb7e67ca614b2760a73f5788e9db8aa8efa48c 100644
|
| --- a/syzygy/agent/asan/heap_checker.h
|
| +++ b/syzygy/agent/asan/heap_checker.h
|
| @@ -53,12 +53,13 @@ class HeapChecker {
|
|
|
| private:
|
| // Get the information about the corrupt ranges in a heap slab.
|
| - // @param lower_bound The lower bound for this slab.
|
| - // @param length The length of this slab.
|
| + // @param lower_bound The lower bound for this slab (inclusive).
|
| + // @param upper_bound The upper bound for this slab (exclusive). An
|
| + // overflowed value of 0 indicates the end of all memory.
|
| // @param corrupt_ranges Will receive the information about the corrupt ranges
|
| // in this slab.
|
| void GetCorruptRangesInSlab(const uint8_t* lower_bound,
|
| - size_t length,
|
| + const uint8_t* upper_bound,
|
| CorruptRangesVector* corrupt_ranges);
|
|
|
| // The shadow memory that will be analyzed.
|
|
|