* 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

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