Merge "fix GraphicBuffer::flatten crash issue when handle is null"

This commit is contained in:
Jesse Hall 2014-05-05 22:45:49 +00:00 committed by Gerrit Code Review
commit ef923fcfd3
1 changed files with 4 additions and 2 deletions

View File

@ -235,8 +235,10 @@ status_t GraphicBuffer::flatten(void*& buffer, size_t& size, int*& fds, size_t&
buffer = reinterpret_cast<void*>(static_cast<int*>(buffer) + sizeNeeded);
size -= sizeNeeded;
fds += handle->numFds;
count -= handle->numFds;
if (handle) {
fds += handle->numFds;
count -= handle->numFds;
}
return NO_ERROR;
}