am 552e02fa: am 5c8f75ef: Merge "Disable leak checking for mksh; it\'s way too leaky."

* commit '552e02fa9c99fd234c57d756358e3208d11a13ad':
  Disable leak checking for mksh; it's way too leaky.
This commit is contained in:
Elliott Hughes 2013-01-22 22:14:31 -08:00 committed by Android Git Automerger
commit ce8732b188

View File

@ -376,6 +376,11 @@ static void malloc_init_impl() {
} }
} }
// mksh is way too leaky. http://b/7291287.
if (debug_level >= 10 && strcmp(__progname, "sh") == 0) {
return;
}
// Choose the appropriate .so for the requested debug level. // Choose the appropriate .so for the requested debug level.
switch (debug_level) { switch (debug_level) {
case 1: case 1: