Skip to content

Commit 93e12f1

Browse files
authored
[scudo] Remove hard-coded use of AndroidConfig. (#66845)
The bionic wrappers hard-coded use of AndroidConfig. This overrides the custom config code, so remove the hard-coding.
1 parent c8fd0cf commit 93e12f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/scudo/standalone/wrappers_c_bionic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
extern "C" void SCUDO_PREFIX(malloc_postinit)();
2929
SCUDO_REQUIRE_CONSTANT_INITIALIZATION
30-
static scudo::Allocator<scudo::AndroidConfig, SCUDO_PREFIX(malloc_postinit)>
30+
static scudo::Allocator<scudo::Config, SCUDO_PREFIX(malloc_postinit)>
3131
SCUDO_ALLOCATOR;
3232

3333
#include "wrappers_c.inc"

0 commit comments

Comments
 (0)