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

Commit 0a6bb4db 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

am: 9d01aa8b

Change-Id: Ifd6a169da735a400446135d9ea944bf146a4cf27
parents 60311e15 9d01aa8b
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);