diff options
author | Christopher Faylor <me@cgf.cx> | 2011-07-13 17:53:21 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2011-07-13 17:53:21 +0000 |
commit | b4efd5410c4b5c1efaff3e9db73738fa3ceda14b (patch) | |
tree | ba31e4439fae8d3dfdf727fdf4480122cfea0e5c | |
parent | 415e1ecce4374a99c49b2e813ecc6b525fea1a69 (diff) | |
download | cygnal-b4efd5410c4b5c1efaff3e9db73738fa3ceda14b.tar.gz cygnal-b4efd5410c4b5c1efaff3e9db73738fa3ceda14b.tar.bz2 cygnal-b4efd5410c4b5c1efaff3e9db73738fa3ceda14b.zip |
* setup_handler (setup_handler): Change break to goto out, missed in 2011-07-06
changes.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/exceptions.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index aa8a993b9..64347c435 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2011-07-13 Christopher Faylor <me.cygwin2011@cgf.cx> + + * setup_handler (setup_handler): Change break to goto out, missed in + 2011-07-06 changes. + 2011-07-10 Christopher Faylor <me.cygwin2011@cgf.cx> * fhandler_tty.cc (fhandler_pty_slave::ioctl): Remove erroneous support diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 638c6e3b8..d9d7f5059 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -861,7 +861,7 @@ setup_handler (int sig, void *handler, struct sigaction& siga, _cygtls *tls) tls->interrupt_setup (sig, handler, siga); interrupted = true; tls->unlock (); - break; + goto out; } DWORD res; |