am 9ea09757
: Fix broken error check in Parcel::readBlob
* commit '9ea09757fa63ad2a9bea9c846b51c1210d69c79f': Fix broken error check in Parcel::readBlob
This commit is contained in:
commit
4335d35c71
@ -1281,7 +1281,7 @@ status_t Parcel::readBlob(size_t len, ReadableBlob* outBlob) const
|
||||
if (fd == int(BAD_TYPE)) return BAD_VALUE;
|
||||
|
||||
void* ptr = ::mmap(NULL, len, PROT_READ, MAP_SHARED, fd, 0);
|
||||
if (!ptr) return NO_MEMORY;
|
||||
if (ptr == MAP_FAILED) return NO_MEMORY;
|
||||
|
||||
outBlob->init(true /*mapped*/, ptr, len);
|
||||
return NO_ERROR;
|
||||
|
Loading…
Reference in New Issue
Block a user