* commit '9004e7f5516c5b4a1b4178fa6a8bb4b3ca4ddcd0': Verify that the native handle was created
This commit is contained in:
commit
861c3f5615
@ -1217,6 +1217,10 @@ native_handle* Parcel::readNativeHandle() const
|
|||||||
if (err != NO_ERROR) return 0;
|
if (err != NO_ERROR) return 0;
|
||||||
|
|
||||||
native_handle* h = native_handle_create(numFds, numInts);
|
native_handle* h = native_handle_create(numFds, numInts);
|
||||||
|
if (!h) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
for (int i=0 ; err==NO_ERROR && i<numFds ; i++) {
|
for (int i=0 ; err==NO_ERROR && i<numFds ; i++) {
|
||||||
h->data[i] = dup(readFileDescriptor());
|
h->data[i] = dup(readFileDescriptor());
|
||||||
if (h->data[i] < 0) err = BAD_VALUE;
|
if (h->data[i] < 0) err = BAD_VALUE;
|
||||||
|
Loading…
Reference in New Issue
Block a user