Merge "Avoid NPE in system_server in bringDownServiceLocked()"

This commit is contained in:
Treehugger Robot
2019-12-24 22:18:28 +00:00
committed by Gerrit Code Review

View File

@@ -2935,7 +2935,9 @@ public final class ActiveServices {
} catch (Exception e) { } catch (Exception e) {
Slog.w(TAG, "Exception when unbinding service " Slog.w(TAG, "Exception when unbinding service "
+ r.shortInstanceName, e); + r.shortInstanceName, e);
needOomAdj = false;
serviceProcessGoneLocked(r); serviceProcessGoneLocked(r);
break;
} }
} }
} }