diff --git a/lib/idmapping.c b/lib/idmapping.c index 3f55d8c8..b9107647 100644 --- a/lib/idmapping.c +++ b/lib/idmapping.c @@ -80,11 +80,6 @@ struct map_range *get_map_ranges(int ranges, int argc, char **argv) free(mappings); return NULL; } - if (m->lower + m->count < m->lower || m->upper + m->count < m->upper) { - /* this one really shouldn't be possible given previous checks */ - fprintf(log_get_logfd(), _( "%s: subuid overflow detected.\n"), log_get_progname()); - exit(EXIT_FAILURE); - } } return mappings; }