Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
1999-10-12  Ulrich Drepper  <drepper@cygnus.com>

	* locale/setlocale.c: Fix gcc warning about uninitialized variable.
  • Loading branch information
Ulrich Drepper committed Oct 12, 1999
1 parent 39d1d4e commit d4c5cf8
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
1999-10-12 Ulrich Drepper <drepper@cygnus.com>

* locale/setlocale.c: Fix gcc warning about uninitialized variable.

1999-10-12 Andreas Jaeger <aj@suse.de>

* stdlib/tst-environ.c: Include <string.h> for strcpy declaration.
Expand Down
4 changes: 4 additions & 0 deletions linuxthreads/ChangeLog
@@ -1,3 +1,7 @@
1999-10-12 Ulrich Drepper <drepper@cygnus.com>

* internals.h: Correct return types for __libc_read and __libc_write.

1999-10-09 Andreas Jaeger <aj@suse.de>

* internals.h: Add __new_sem_post to get prototype in
Expand Down
6 changes: 6 additions & 0 deletions linuxthreads_db/ChangeLog
@@ -1,3 +1,9 @@
1999-10-12 Andreas Jaeger <aj@suse.de>

* thread_dbP.h: Include <string.h> for strlen declaration. Remove
__libc_write prototype since this is already declared in
linuxthreads/internals.h.

1999-10-11 Ulrich Drepper <drepper@cygnus.com>

* thread_db.h: Fix comment for ti_type.
Expand Down
9 changes: 3 additions & 6 deletions locale/setlocale.c
Expand Up @@ -327,12 +327,9 @@ setlocale (int category, const char *locale)
}

/* Create new composite name. */
if (category >= 0
|| (composite = new_composite_name (LC_ALL, newnames)) == NULL)
/* Loading this part of the locale failed. Abort the
composite load. */
composite = NULL;
else
composite = (category >= 0
? NULL : new_composite_name (LC_ALL, newnames));
if (composite != NULL)
{
/* Now we have loaded all the new data. Put it in place. */
for (category = 0; category < __LC_LAST; ++category)
Expand Down

0 comments on commit d4c5cf8

Please sign in to comment.