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

Commit 2098517e authored by Mathias Agopian's avatar Mathias Agopian
Browse files

make sure Parcel handles 0-sized LightFlatenables

Change-Id: Ib30a1c0228f8a938abaa0c7c8a6ba32ffd971121
parent 8210185f
Loading
Loading
Loading
Loading
+12 −6
Original line number Diff line number Diff line
@@ -285,10 +285,13 @@ status_t Parcel::write(const LightFlattenable<T>& val) {
            return err;
        }
    }
    if (size) {
        void* buffer = writeInplace(size);
        return buffer == NULL ? NO_MEMORY :
                val.flatten(buffer);
    }
    return NO_ERROR;
}

template<typename T>
status_t Parcel::read(LightFlattenable<T>& val) const {
@@ -303,10 +306,13 @@ status_t Parcel::read(LightFlattenable<T>& val) const {
        }
        size = s;
    }
    if (size) {
        void const* buffer = readInplace(size);
        return buffer == NULL ? NO_MEMORY :
                val.unflatten(buffer, size);
    }
    return NO_ERROR;
}

// ---------------------------------------------------------------------------