public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
From: 1dakotaxi <1dakotaxi@gmail.com>
To: Takashi Yano <tyan0@sourceware.org>, cygwin-cvs@sourceware.org
Subject: RE: [newlib-cygwin/cygwin-3_5-branch] Cygwin: console: Fix exit code for non-cygwin process.
Date: Thu, 01 Feb 2024 22:27:41 -0800	[thread overview]
Message-ID: <65bc8b5e.170a0220.3c042.3c38@mx.google.com> (raw)
In-Reply-To: <20240202053152.EA8F23858D33@sourceware.org>

[-- Attachment #1: Type: text/plain, Size: 2311 bytes --]

Stop Sent from my T-Mobile 5G Device
-------- Original message --------From: Takashi Yano via Cygwin-cvs <cygwin-cvs@cygwin.com> Date: 2/1/24  9:31 PM  (GMT-08:00) To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/cygwin-3_5-branch] Cygwin: console: Fix exit code for non-cygwin process. https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=aa73e115242612bf8b5f8670c0c7d398693d1d84commit aa73e115242612bf8b5f8670c0c7d398693d1d84Author: Takashi Yano <takashi.yano@nifty.ne.jp>Date:   Fri Feb 2 13:59:19 2024 +0900    Cygwin: console: Fix exit code for non-cygwin process.        If non-cygwin process is executed in console, the exit code is not    set correctly. This is because the stub process for non-cygwin app    crashes in fhandler_console::set_disable_master_thread() due to NULL    pointer dereference. This bug was introduced by the commit:    3721a756b0d8 ("Cygwin: console: Make the console accessible from    other terminals."), that the pointer cons is accessed before fixing    when it is NULL. This patch fixes the issue.        Fixes: 3721a756b0d8 ("Cygwin: console: Make the console accessible from other terminals.")    Reported-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>    Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>Diff:--- winsup/cygwin/fhandler/console.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)diff --git a/winsup/cygwin/fhandler/console.cc b/winsup/cygwin/fhandler/console.ccindex b924a6bf3..6a42b4949 100644--- a/winsup/cygwin/fhandler/console.cc+++ b/winsup/cygwin/fhandler/console.cc@@ -4537,9 +4537,6 @@ fhandler_console::need_console_handler () void fhandler_console::set_disable_master_thread (bool x, fhandler_console *cons) {-  const _minor_t unit = cons->get_minor ();-  if (con.disable_master_thread == x)-    return;   if (cons == NULL)     {       if (cygheap->ctty && cygheap->ctty->get_major () == DEV_CONS_MAJOR)@@ -4547,6 +4544,9 @@ fhandler_console::set_disable_master_thread (bool x, fhandler_console *cons)       else 	return;     }+  const _minor_t unit = cons->get_minor ();+  if (con.disable_master_thread == x)+    return;   cons->acquire_input_mutex (mutex_timeout);   con.disable_master_thread = x;   cons->release_input_mutex ();

      reply	other threads:[~2024-02-02  6:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-02  5:31 Takashi Yano
2024-02-02  6:27 ` 1dakotaxi [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=65bc8b5e.170a0220.3c042.3c38@mx.google.com \
    --to=1dakotaxi@gmail.com \
    --cc=cygwin-cvs@sourceware.org \
    --cc=tyan0@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).