From 86f64c37b914645afb345f96af13ad843ec641b1 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 24 Jan 2012 16:42:13 +0000 Subject: daemon: Close inotify handle on exit. --- daemon/inotify.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/daemon/inotify.c b/daemon/inotify.c index e7ce4235..add1f146 100644 --- a/daemon/inotify.c +++ b/daemon/inotify.c @@ -40,6 +40,17 @@ static int inotify_fd = -1; static char inotify_buf[64*1024*1024]; /* Event buffer, [0..posn-1] is valid */ static size_t inotify_posn = 0; +/* Clean up the inotify handle on daemon exit. */ +static void inotify_finalize (void) __attribute__((destructor)); +static void +inotify_finalize (void) +{ + if (inotify_fd >= 0) { + close (inotify_fd); + inotify_fd = -1; + } +} + int optgroup_inotify_available (void) { -- cgit