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

Commit 239855b3 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Recycle leaked SomeArgs instances.

Bug: 258691671
Test: TH
Change-Id: I361ec4c8bb47b277130cca2c20197694538341e9
parent 81d66e9d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2365,6 +2365,7 @@ public abstract class NotificationListenerService extends Service {
                    UserHandle user= (UserHandle) args.arg2;
                    NotificationChannel channel = (NotificationChannel) args.arg3;
                    int modificationType = (int) args.arg4;
                    args.recycle();
                    onNotificationChannelModified(pkgName, user, channel, modificationType);
                } break;

@@ -2374,6 +2375,7 @@ public abstract class NotificationListenerService extends Service {
                    UserHandle user = (UserHandle) args.arg2;
                    NotificationChannelGroup group = (NotificationChannelGroup) args.arg3;
                    int modificationType = (int) args.arg4;
                    args.recycle();
                    onNotificationChannelGroupModified(pkgName, user, group, modificationType);
                } break;