X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=src%2Ftrackfds.h;h=f0ba8791d8485fd5441ae7bcd45109bdda482560;hb=ba2283bd3780a13f26521c5c47deedfc7184ed7d;hp=56490adf1ad37b504e88cc0c62fc86e0d2cd8282;hpb=45d25526c0df734a5eeb926b0e733e19bfbdb8c2;p=coloredstderr%2Fcoloredstderr.git diff --git a/src/trackfds.h b/src/trackfds.h index 56490ad..f0ba879 100644 --- a/src/trackfds.h +++ b/src/trackfds.h @@ -124,8 +124,7 @@ static void init_from_environment(void) { } /* ',' at the beginning or double ',' - ignore. */ if (x == last) { - last = x + 1; - continue; + goto next; } if (i == count) { @@ -330,7 +329,11 @@ static int tracked_fds_find_slow(int fd) noinline; */ inline static int tracked_fds_find(int fd) always_inline; inline static int tracked_fds_find(int fd) { - assert(fd >= 0); + /* Invalid file descriptor. No assert() as we're called from the hooked + * macro. */ + if (unlikely(fd < 0)) { + return 0; + } if (fd < TRACKFDS_STATIC_COUNT) { return tracked_fds[fd]; @@ -340,6 +343,7 @@ inline static int tracked_fds_find(int fd) { } static int tracked_fds_find_slow(int fd) { assert(initialized); + assert(fd >= 0); if (tracked_fds_list_count == 0) { return 0;