Merge "toolbox: exit when failed to allocate buffer for ioctl" am: 16017b3fbb
am: a2c763de6f
Change-Id: I1f827779131f45444f1ed3c42ad5b6dfea14cfe5
This commit is contained in:
commit
93865880e5
1 changed files with 3 additions and 4 deletions
|
@ -9,6 +9,7 @@
|
|||
#include <sys/limits.h>
|
||||
#include <sys/poll.h>
|
||||
#include <linux/input.h>
|
||||
#include <err.h>
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
@ -110,10 +111,8 @@ static int print_possible_events(int fd, int print_flags)
|
|||
break;
|
||||
bits_size = res + 16;
|
||||
bits = realloc(bits, bits_size * 2);
|
||||
if(bits == NULL) {
|
||||
fprintf(stderr, "failed to allocate buffer of size %d\n", (int)bits_size);
|
||||
return 1;
|
||||
}
|
||||
if(bits == NULL)
|
||||
err(1, "failed to allocate buffer of size %d\n", (int)bits_size);
|
||||
}
|
||||
res2 = 0;
|
||||
switch(i) {
|
||||
|
|
Loading…
Reference in a new issue