Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions external/corefx-bugfix/src/Native/Unix/Common/pal_utilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,6 @@ inline static int ToFileDescriptorUnchecked(intptr_t fd)
*/
inline static int ToFileDescriptor(intptr_t fd)
{
assert(0 <= fd);
assert(fd < sysconf(_SC_OPEN_MAX) && "Requested file descriptor exceeds maximum number of files allowed to be open at a time.");

return ToFileDescriptorUnchecked(fd);
}

Expand Down