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

Commit 3f727c0e authored by Hyejin Kim's avatar Hyejin Kim Committed by Sungmin Choi
Browse files

fix mem leak on error handling

Change-Id: I40d8e371c46184aa701fa676246201a9d8f6e27d
parent 74bd799e
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;
            }