aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/system/FileDescriptor.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/system/FileDescriptor.cxx b/src/system/FileDescriptor.cxx
index 65206e5f0..b8b5a4fdf 100644
--- a/src/system/FileDescriptor.cxx
+++ b/src/system/FileDescriptor.cxx
@@ -60,8 +60,6 @@
bool
FileDescriptor::Open(const char *pathname, int flags)
{
- assert(!IsDefined());
-
fd = ::open(pathname, flags);
return IsDefined();
}
@@ -125,8 +123,6 @@ FileDescriptor::SetBlocking()
bool
FileDescriptor::CreateEventFD(unsigned initval)
{
- assert(!IsDefined());
-
fd = ::eventfd(initval, EFD_NONBLOCK|EFD_CLOEXEC);
return fd >= 0;
}