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

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

Merge "libbinder: remove unnecessary check"

am: 4f3f6529

Change-Id: I070417e3c40c6587009e76c8c22e85fc5f79d601
parents a0f796f2 4f3f6529
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;
            }