MonitorFdHup::~MonitorFdHup: use proper close method instead of libc close()
Otherwise closing it again will cause an EBADF in the AutoCloseFd class.
(cherry picked from commit 87a34a45ff)
This commit is contained in:
@@ -122,7 +122,7 @@ public:
|
||||
|
||||
~MonitorFdHup()
|
||||
{
|
||||
close(notifyPipe.writeSide.get());
|
||||
notifyPipe.writeSide.close();
|
||||
thread.join();
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user