make sure Parcel handles 0-sized LightFlatenables
Change-Id: Ib30a1c0228f8a938abaa0c7c8a6ba32ffd971121
This commit is contained in:
parent
8210185fe3
commit
2098517e3e
@ -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;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user