From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 0496E385781A; Tue, 14 Sep 2021 15:07:55 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0496E385781A Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: pipes: do not duplicate sec_none{_nih} locally when creating objects X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: c48361ad9e84a3b8217111c03eda5d7820eebb2e X-Git-Newrev: 8985f1c7c4d621498642e1c0fd349a5526006de4 Message-Id: <20210914150755.0496E385781A@sourceware.org> Date: Tue, 14 Sep 2021 15:07:55 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2021 15:07:55 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=8985f1c7c4d621498642e1c0fd349a5526006de4 commit 8985f1c7c4d621498642e1c0fd349a5526006de4 Author: Corinna Vinschen Date: Mon Sep 13 22:02:51 2021 +0200 Cygwin: pipes: do not duplicate sec_none{_nih} locally when creating objects We already fetched the correct SECURITY_ATTRIBUTES at the start of fhandler_pipe::create, so using another SECURITY_ATTRIBUTES object for the mutex and semaphore objects doesn't make much sense. Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/fhandler_pipe.cc | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/winsup/cygwin/fhandler_pipe.cc b/winsup/cygwin/fhandler_pipe.cc index 62cb1c0ec..70cfa3784 100644 --- a/winsup/cygwin/fhandler_pipe.cc +++ b/winsup/cygwin/fhandler_pipe.cc @@ -769,11 +769,7 @@ fhandler_pipe::create (fhandler_pipe *fhs[2], unsigned psize, int mode) unique_id); /* For the read side of the pipe, add a mutex. See raw_read for the usage. */ - SECURITY_ATTRIBUTES sa = { .nLength = sizeof (SECURITY_ATTRIBUTES), - .lpSecurityDescriptor = NULL, - .bInheritHandle = !(mode & O_CLOEXEC) - }; - HANDLE mtx = CreateMutexW (&sa, FALSE, NULL); + HANDLE mtx = CreateMutexW (sa, FALSE, NULL); if (!mtx) { delete fhs[0]; @@ -786,11 +782,11 @@ fhandler_pipe::create (fhandler_pipe *fhs[2], unsigned psize, int mode) fhs[0]->set_read_mutex (mtx); res = 0; } - fhs[0]->select_sem = CreateSemaphore (&sa, 0, INT32_MAX, NULL); + fhs[0]->select_sem = CreateSemaphore (sa, 0, INT32_MAX, NULL); if (fhs[0]->select_sem) DuplicateHandle (GetCurrentProcess (), fhs[0]->select_sem, GetCurrentProcess (), &fhs[1]->select_sem, - 0, !(mode & O_CLOEXEC), DUPLICATE_SAME_ACCESS); + 0, sa->bInheritHandle, DUPLICATE_SAME_ACCESS); } debug_printf ("%R = pipe([%p, %p], %d, %y)", res, fhs[0], fhs[1], psize, mode);