Return -1 and set errno to EINVAL if the number of lines specified in
any context-less helper is 0. This is done in addition to bailing out
when the number is higher than the maximum supported number of GPIO
lines. This fixes the segfaults that currently ocurr for num_lines == 0.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
int rv, flags;
unsigned int i;
- if (num_lines > GPIOD_LINE_BULK_MAX_LINES) {
+ if (!num_lines || num_lines > GPIOD_LINE_BULK_MAX_LINES) {
errno = EINVAL;
return -1;
}
unsigned int i;
int rv, flags;
- if (num_lines > GPIOD_LINE_BULK_MAX_LINES) {
+ if (!num_lines || num_lines > GPIOD_LINE_BULK_MAX_LINES) {
errno = EINVAL;
return -1;
}
unsigned int i;
int rv, ret;
- if (num_lines > GPIOD_LINE_BULK_MAX_LINES)
+ if (!num_lines || num_lines > GPIOD_LINE_BULK_MAX_LINES)
return GPIOD_CTXLESS_EVENT_POLL_RET_ERR;
memset(poll_fds, 0, sizeof(poll_fds));
struct gpiod_line *line;
unsigned int i;
- if (num_lines > GPIOD_LINE_BULK_MAX_LINES) {
+ if (!num_lines || num_lines > GPIOD_LINE_BULK_MAX_LINES) {
errno = EINVAL;
return -1;
}