We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e220398 commit d9ede91Copy full SHA for d9ede91
compiler-rt/lib/scudo/standalone/trusty.cpp
@@ -62,7 +62,7 @@ void *map(void *Addr, uptr Size, const char *Name, uptr Flags,
62
void unmap(UNUSED void *Addr, UNUSED uptr Size, UNUSED uptr Flags,
63
UNUSED MapPlatformData *Data) {
64
if (_trusty_munmap(Addr, Size) != 0)
65
- reportUnmapError(Addr, Size);
+ reportUnmapError(reinterpret_cast<uptr>(Addr), Size);
66
}
67
68
void setMemoryPermission(UNUSED uptr Addr, UNUSED uptr Size, UNUSED uptr Flags,
0 commit comments