From cd25d98bfa38c87bd857264e876cd8be42eb3678 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 27 Jun 2017 14:22:28 +0200 Subject: Avoid calling close(-1) While this is perfectly OK on Unix, it causes annoying valgrind warnings, and might be otherwise confusing to others. On Windows, the runtime can actually abort the process if this is called. push.c part taken from a patch by Pedro Pombeiro. --- input/ipc-unix.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'input') diff --git a/input/ipc-unix.c b/input/ipc-unix.c index f26e0cadde..c3315d21b5 100644 --- a/input/ipc-unix.c +++ b/input/ipc-unix.c @@ -402,8 +402,10 @@ struct mp_ipc_ctx *mp_init_ipc(struct mp_client_api *client_api, return arg; out: - close(arg->death_pipe[0]); - close(arg->death_pipe[1]); + if (arg->death_pipe[0] >= 0) { + close(arg->death_pipe[0]); + close(arg->death_pipe[1]); + } talloc_free(arg); return NULL; } -- cgit v1.2.3