* 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>
|
||||
|
||||
* 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);
|
||||
|
||||
tls->unlock ();
|
||||
res = ResumeThread (hth);
|
||||
ResumeThread (hth);
|
||||
if (interrupted)
|
||||
goto out;
|
||||
|
||||
|
|
Loading…
Reference in New Issue