| Index: third_party/WebKit/Source/platform/heap/ThreadState.cpp
|
| diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.cpp b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
|
| index aef1573c691272f0bad893ad7dd785a3cc8067e9..da6d06ab4a741c0ad91d2270321656812f5f762d 100644
|
| --- a/third_party/WebKit/Source/platform/heap/ThreadState.cpp
|
| +++ b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
|
| @@ -241,7 +241,7 @@ size_t ThreadState::threadStackSize() {
|
| memset(&stackInfo, 0, sizeof(MEMORY_BASIC_INFORMATION));
|
| size_t resultSize =
|
| VirtualQuery(&stackInfo, &stackInfo, sizeof(MEMORY_BASIC_INFORMATION));
|
| - ASSERT_UNUSED(resultSize, resultSize >= sizeof(MEMORY_BASIC_INFORMATION));
|
| + DCHECK_GE(resultSize, sizeof(MEMORY_BASIC_INFORMATION));
|
| Address stackEnd = reinterpret_cast<Address>(stackInfo.AllocationBase);
|
|
|
| Address stackStart =
|
|
|