Merge "Fix native_handle_create to check if malloc fails" into lmp-mr1-dev
This commit is contained in:
commit
b542285436
1 changed files with 5 additions and 3 deletions
|
|
@ -30,9 +30,11 @@ native_handle_t* native_handle_create(int numFds, int numInts)
|
||||||
native_handle_t* h = malloc(
|
native_handle_t* h = malloc(
|
||||||
sizeof(native_handle_t) + sizeof(int)*(numFds+numInts));
|
sizeof(native_handle_t) + sizeof(int)*(numFds+numInts));
|
||||||
|
|
||||||
h->version = sizeof(native_handle_t);
|
if (h) {
|
||||||
h->numFds = numFds;
|
h->version = sizeof(native_handle_t);
|
||||||
h->numInts = numInts;
|
h->numFds = numFds;
|
||||||
|
h->numInts = numInts;
|
||||||
|
}
|
||||||
return h;
|
return h;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue