Fix NPE when calling recreate in onCreate am: 6c675a3a48

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15435289

Change-Id: I22adc2f4d43f4cf9331c677667c414b8f6a127eb
This commit is contained in:
Riddle Hsu
2021-08-04 05:37:56 +00:00
committed by Automerger Merge Worker

View File

@@ -5654,8 +5654,8 @@ public final class ActivityThread extends ClientTransactionHandler
*/ */
private void scheduleRelaunchActivityIfPossible(@NonNull ActivityClientRecord r, private void scheduleRelaunchActivityIfPossible(@NonNull ActivityClientRecord r,
boolean preserveWindow) { boolean preserveWindow) {
if (r.activity.mFinished || r.token instanceof Binder) { if ((r.activity != null && r.activity.mFinished) || r.token instanceof Binder) {
// Do not schedule relaunch if the activity is finishing or not a local object (e.g. // Do not schedule relaunch if the activity is finishing or is a local object (e.g.
// created by ActivtiyGroup that server side doesn't recognize it). // created by ActivtiyGroup that server side doesn't recognize it).
return; return;
} }