* setup_handler (setup_handler): Change break to goto out, missed in 2011-07-06
changes.
This commit is contained in:
parent
415e1ecce4
commit
b4efd5410c
@ -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>
|
2011-07-10 Christopher Faylor <me.cygwin2011@cgf.cx>
|
||||||
|
|
||||||
* fhandler_tty.cc (fhandler_pty_slave::ioctl): Remove erroneous support
|
* fhandler_tty.cc (fhandler_pty_slave::ioctl): Remove erroneous support
|
||||||
|
@ -861,7 +861,7 @@ setup_handler (int sig, void *handler, struct sigaction& siga, _cygtls *tls)
|
|||||||
tls->interrupt_setup (sig, handler, siga);
|
tls->interrupt_setup (sig, handler, siga);
|
||||||
interrupted = true;
|
interrupted = true;
|
||||||
tls->unlock ();
|
tls->unlock ();
|
||||||
break;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
DWORD res;
|
DWORD res;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user