* exceptions.cc (setup_handler): Remove unneeded assignment found by Clang.
This commit is contained in:
parent
226133e80c
commit
85b2b14e7a
|
@ -1,3 +1,8 @@
|
||||||
|
2012-07-04 Christopher Faylor <me.cygwin2012@cgf.cx>
|
||||||
|
|
||||||
|
* exceptions.cc (setup_handler): Remove unneeded assignment found by
|
||||||
|
Clang.
|
||||||
|
|
||||||
2012-07-04 Christopher Faylor <me.cygwin2012@cgf.cx>
|
2012-07-04 Christopher Faylor <me.cygwin2012@cgf.cx>
|
||||||
|
|
||||||
* hookapi.cc (find_first_notloaded_dll): Remove unused assignment of
|
* hookapi.cc (find_first_notloaded_dll): Remove unused assignment of
|
||||||
|
|
|
@ -880,7 +880,7 @@ setup_handler (int sig, void *handler, struct sigaction& siga, _cygtls *tls)
|
||||||
interrupted = tls->interrupt_now (&cx, sig, handler, siga);
|
interrupted = tls->interrupt_now (&cx, sig, handler, siga);
|
||||||
|
|
||||||
tls->unlock ();
|
tls->unlock ();
|
||||||
res = ResumeThread (hth);
|
ResumeThread (hth);
|
||||||
if (interrupted)
|
if (interrupted)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue