1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-18 16:29:36 +01:00

Merge pull request #12740 from NixOS/mergify/bp/2.27-maintenance/pr-12736

`MonitorFdHup::~MonitorFdHup`: use proper close method instead of lib… (backport #12736)
This commit is contained in:
Jörg Thalheim 2025-03-24 13:50:33 +01:00 committed by GitHub
commit 9178731176
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -122,7 +122,7 @@ public:
~MonitorFdHup()
{
close(notifyPipe.writeSide.get());
notifyPipe.writeSide.close();
thread.join();
}
};