Skip to content

Commit

Permalink
* nscd/initgrcache.c (addinitgroupsX): Move any_success
Browse files Browse the repository at this point in the history
	decl before first goto out.
  • Loading branch information
Ulrich Drepper committed Sep 5, 2006
1 parent cd248c3 commit d052233
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 5 additions & 1 deletion localedata/ChangeLog
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion localedata/locales/or_IN
Original file line number Diff line number Diff line change
Expand Up @@ -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>";/
Expand Down
7 changes: 7 additions & 0 deletions nptl/ChangeLog
Original file line number Diff line number Diff line change
@@ -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>

Expand Down
2 changes: 1 addition & 1 deletion nptl/sysdeps/pthread/aio_misc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion nptl/sysdeps/pthread/gai_misc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit d052233

Please sign in to comment.