* nscd/initgrcache.c (addinitgroupsX): Move any_success

decl before first goto out.
This commit is contained in:
Ulrich Drepper 2006-09-05 15:33:13 +00:00
parent cd248c3f0d
commit d052233c6c
6 changed files with 20 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2006-09-05 Jakub Jelinek <jakub@redhat.com>
* nscd/initgrcache.c (addinitgroupsX): Move any_success
decl before first goto out.
2006-09-04 Jakub Jelinek <jakub@redhat.com>
* Makerules (shlib.lds): If have-hash-style, put .hash section

View File

@ -1,3 +1,7 @@
2006-09-05 Ulrich Drepper <drepper@redhat.com>
* locales/or_IN (mon): Fix February string.
2006-08-24 Ulrich Drepper <drepper@redhat.com>
[BZ #2695]
@ -20,7 +24,7 @@
[BZ #3034]
* locales/ml_IN (abmon): Fix June entry.
* locales/bn_IN: (abday): Fix Tuesday entry.
* locales/bn_IN (abday): Fix Tuesday entry.
(day): Likewise.
(abmon): Fix January and February entries.
(mon): Likewise.

View File

@ -641,7 +641,7 @@ abmon "<U0031>";/
"<U0031><U0031>";/
"<U0031><U0032>"
mon "<U0B1C><U0B3E><U0B28><U0B41><U0B06><U0B30><U0B40>";/
"<U0B2B><U0B47><U0B2C><U0B4D><U0B30><U0B41><U0B5F><U0B3E><U0B30><U0B40>";/
"<U0B2B><U0B47><U0B2C><U0B43><U0B06><U0B30><U0B40>";/
"<U0B2E><U0B3E><U0B30><U0B4D><U0B1A><U0B4D><U0B1A>";/
"<U0B05><U0B2A><U0B4D><U0B30><U0B47><U0B32>";/
"<U0B2E><U0B07>";/

View File

@ -1,3 +1,10 @@
2006-09-05 Jakub Jelinek <jakub@redhat.com>
Ulrich Drepper <drepper@redhat.com>
* sysdeps/pthread/gai_misc.h (GAI_MISC_NOTIFY): Don't decrement
counterp if it is already zero.
* sysdeps/pthread/aio_misc.h (AIO_MISC_NOTIFY): Likewise..
2006-03-04 Jakub Jelinek <jakub@redhat.com>
Roland McGrath <roland@redhat.com>

View File

@ -29,7 +29,7 @@
#define AIO_MISC_NOTIFY(waitlist) \
do { \
if (--*waitlist->counterp == 0) \
if (*waitlist->counterp > 0 && --*waitlist->counterp == 0) \
lll_futex_wake (waitlist->counterp, 1); \
} while (0)

View File

@ -30,7 +30,7 @@
#define GAI_MISC_NOTIFY(waitlist) \
do { \
if (--*waitlist->counterp == 0) \
if (*waitlist->counterp > 0 && --*waitlist->counterp == 0) \
lll_futex_wake (waitlist->counterp, 1); \
} while (0)