From 3d94f76c99da13e5603831d0b278f8c8c21bcb02 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 24 Mar 2014 03:22:44 +0100 Subject: util: replace close_pipe() with new safe_close_pair() safe_close_pair() is more like safe_close(), except that it handles pairs of fds, and doesn't make and misleading allusion, as it works similarly well for socketpairs() as for pipe()s... --- src/core/automount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/automount.c') diff --git a/src/core/automount.c b/src/core/automount.c index 77d80b2789..65e6d6f179 100644 --- a/src/core/automount.c +++ b/src/core/automount.c @@ -532,7 +532,7 @@ static void automount_enter_waiting(Automount *a) { return; fail: - close_pipe(p); + safe_close_pair(p); if (mounted) repeat_unmount(a->where); -- cgit v1.2.3-54-g00ecf