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

Commit 36c01361 authored by Rubin Xu's avatar Rubin Xu Committed by android-build-merger
Browse files

Merge \\"Guard against null object in scheduleNotifyUpdateAppWidgetLocked\\"...

Merge \\"Guard against null object in scheduleNotifyUpdateAppWidgetLocked\\" into nyc-mr1-dev am: 26504a61
am: 9d1e68ab

Change-Id: Ib09e0a5ba83959ef9ea418066c7ad16b1ab2238c
parents b8e3b41d 9d1e68ab
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;