Merge "Disable leak checking for mksh; it's way too leaky."

This commit is contained in:
Elliott Hughes 2013-01-23 06:05:18 +00:00 committed by Gerrit Code Review
commit 5c8f75ef8b

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.
switch (debug_level) {
case 1: