Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9d01aa8b authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "aapt2: disable leak detection" am: ff044e70 am: f9479e67

am: 940fec9e

Change-Id: I704063d1d41f5c1f961ae42c6346e70ee4e24863
parents 1a8cd03f 940fec9e
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -177,6 +177,11 @@ int MainImpl(int argc, char** argv) {
  return main_command->Execute(args, &std::cerr);
}

// TODO(b/141312058) stop leaks
extern "C" const char *__asan_default_options() {
    return "detect_leaks=0";
}

int main(int argc, char** argv) {
#ifdef _WIN32
  LPWSTR* wide_argv = CommandLineToArgvW(GetCommandLineW(), &argc);