Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2011-07-13 21:53:21 +0400
committerChristopher Faylor <me@cgf.cx>2011-07-13 21:53:21 +0400
commitb4efd5410c4b5c1efaff3e9db73738fa3ceda14b (patch)
treeba31e4439fae8d3dfdf727fdf4480122cfea0e5c /winsup/cygwin/exceptions.cc
parent415e1ecce4374a99c49b2e813ecc6b525fea1a69 (diff)
* setup_handler (setup_handler): Change break to goto out, missed in 2011-07-06
changes.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r--winsup/cygwin/exceptions.cc2
1 files changed, 1 insertions, 1 deletions
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;