[GWP-ASan] Change crash handler constant.

Constant is too large to fit into uintptr_t on 32-bit.
This commit is contained in:
Mitch Phillips 2020-02-05 16:46:51 -08:00
parent 40efa65de8
commit 0c3b2986ac
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ protected:
};
uintptr_t CrashHandlerAPITest::BacktraceConstants[kNumBacktraceConstants] = {
0xdeadbeef, 0xdeadc0de, 0xbadc0ffee, 0xcafef00d};
0xdeadbeef, 0xdeadc0de, 0xbadc0ffe, 0xcafef00d};
TEST_F(CrashHandlerAPITest, PointerNotMine) {
uintptr_t UnknownPtr = reinterpret_cast<uintptr_t>(&State);