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

Commit 8728c390 authored by Adam Lesinski's avatar Adam Lesinski Committed by Android Git Automerger
Browse files

am 2c4f5fde: am 861c3f56: am 9004e7f5: am 4ff0cb44: Verify that the native handle was created

* commit '2c4f5fde':
  Verify that the native handle was created
parents 2cc42f0b 2c4f5fde
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -1215,6 +1215,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;