Cleanly remove the device FD from the event loop before closing it.

This commit is contained in:
Etienne Dechamps 2014-06-22 14:06:44 +01:00
parent ed1d0878af
commit f0885b8d2f

View file

@ -1117,6 +1117,8 @@ void close_network_connections(void) {
for(int i = 0; i < 4; i++)
free(envp[i]);
if (device_fd >= 0)
io_del(&device_io);
devops.close();
exit_control();