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

Commit 0c246c18 authored by Ganesh Mahendran's avatar Ganesh Mahendran Committed by android-build-merger
Browse files

Merge "libbinder: remove unnecessary check" am: 4f3f6529 am: 74003057

am: f329278f

Change-Id: I1069df17ed1bf3994244f82aa475896f7433237d
parents aa09b645 f329278f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2645,7 +2645,7 @@ status_t Parcel::continueWrite(size_t desired)
                pthread_mutex_unlock(&gParcelGlobalAllocSizeLock);
                mData = data;
                mDataCapacity = desired;
            } else if (desired > mDataCapacity) {
            } else {
                mError = NO_MEMORY;
                return NO_MEMORY;
            }