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

Commit f19d43d8 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick Committed by Android (Google) Code Review
Browse files

Merge "Fix Parcel leak in ContentProvider.call()"

parents 4a8a310a dfb437e1
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -515,7 +515,12 @@ final class ContentProviderProxy implements IContentProvider
        mRemote.transact(IContentProvider.CALL_TRANSACTION, data, reply, 0);

        DatabaseUtils.readExceptionFromParcel(reply);
        return reply.readBundle();
        Bundle bundle = reply.readBundle();

        data.recycle();
        reply.recycle();

        return bundle;
    }

    private IBinder mRemote;