The SCUDO_FUZZ macro is either defined or not defined. The previous
code assumed it had a one or zero value, so change the setting of
SCUDO_SMALL_STACK_DEPOT based on defined(SCUDO_FUZZ).
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
I see what happened: the old code was relying on -DSCUDO_FUZZ setting it to 1, but leaving it undefined defaults it to 0. On a second look, I realized the latter is only true for #if but not macros from #define.