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

Commit 86b2ecdd authored by Jeff Brown's avatar Jeff Brown Committed by Gerrit Code Review
Browse files

Merge "fix mem leak on error handling"

parents 1c45dc66 3f727c0e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1472,6 +1472,8 @@ status_t Parcel::continueWrite(size_t desired)
        if (objectsSize) {
            objects = (size_t*)malloc(objectsSize*sizeof(size_t));
            if (!objects) {
                free(data);

                mError = NO_MEMORY;
                return NO_MEMORY;
            }