[git commit] Don't shadow the mask parameter with a local variable in the same function
Ron
ron at debian.org
Fri Jun 26 19:14:25 UTC 2009
commit: http://git.uclibc.org/uClibc/commit/?id=13c6036f71c2cd67161659bff558bf48305d186d
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master
Signed-off-by: Ron Lee <ron at debian.org>
Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
libpthread/linuxthreads.old/manager.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libpthread/linuxthreads.old/manager.c b/libpthread/linuxthreads.old/manager.c
index 0617d7d..88c9253 100644
--- a/libpthread/linuxthreads.old/manager.c
+++ b/libpthread/linuxthreads.old/manager.c
@@ -578,9 +578,9 @@ static int pthread_handle_create(pthread_t *thread, const pthread_attr_t *attr,
/* See whether the TD_CREATE event bit is set in any of the
masks. */
int idx = __td_eventword (TD_CREATE);
- uint32_t mask = __td_eventmask (TD_CREATE);
+ uint32_t m = __td_eventmask (TD_CREATE);
- if ((mask & (__pthread_threads_events.event_bits[idx]
+ if ((m & (__pthread_threads_events.event_bits[idx]
| event_maskp->event_bits[idx])) != 0)
{
/* Lock the mutex the child will use now so that it will stop. */
--
1.6.3.3
More information about the uClibc-cvs
mailing list