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

Commit 1bd6452e authored by Rubin Xu's avatar Rubin Xu
Browse files

Guard against null object in scheduleNotifyUpdateAppWidgetLocked

Bug: 30085290
Change-Id: I4f12e1def98dff7e50b4d25a7d23e81bdbe0b7bd
parent c1182a81
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1905,7 +1905,7 @@ class AppWidgetServiceImpl extends IAppWidgetService.Stub implements WidgetBacku
        SomeArgs args = SomeArgs.obtain();
        args.arg1 = widget.host;
        args.arg2 = widget.host.callbacks;
        args.arg3 = updateViews.clone();
        args.arg3 = (updateViews != null) ? updateViews.clone() : null;
        args.arg4 = requestTime;
        args.argi1 = widget.appWidgetId;