diff options
-rw-r--r-- | compiler-rt/lib/asan/asan_rtl.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_rtl.cc b/compiler-rt/lib/asan/asan_rtl.cc index be05ef35199..6c80b4c9890 100644 --- a/compiler-rt/lib/asan/asan_rtl.cc +++ b/compiler-rt/lib/asan/asan_rtl.cc @@ -459,7 +459,8 @@ static void ParseAsanOptions(const char *options) { IntFlagValue(options, "demangle=", &FLAG_demangle); IntFlagValue(options, "debug=", &FLAG_debug); BoolFlagValue(options, "replace_cfallocator=", &FLAG_replace_cfallocator); - BoolFlagValue(options, "mac_ignore_invalid_free=", &FLAG_mac_ignore_invalid_free); + BoolFlagValue(options, "mac_ignore_invalid_free=", + &FLAG_mac_ignore_invalid_free); BoolFlagValue(options, "replace_str=", &FLAG_replace_str); BoolFlagValue(options, "replace_intrin=", &FLAG_replace_intrin); BoolFlagValue(options, "use_fake_stack=", &FLAG_use_fake_stack); |