* exceptions.cc (setup_handler): Remove unneeded assignment found by Clang.

This commit is contained in:
Christopher Faylor 2012-07-04 06:06:54 +00:00
parent 226133e80c
commit 85b2b14e7a
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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;