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

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

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

am: 74003057

Change-Id: I40e1445f3ebd3b55ba226a1d91f00879ed8f5e67
parents 33d48abe 74003057
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;
            }