forked from lattera/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Fix a typo
in assert. * iconv/strtab.c (strtabfinalize): Likewise. * libio/iofopncook.c (_IO_cookie_seekoff): Add prototype.
- Loading branch information
Roland McGrath
committed
Jan 19, 2005
1 parent
1d038b6
commit f9f7fcb
Showing
4 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
2005-01-19 Jakub Jelinek <[email protected]> | ||
|
||
* hurd/sigunwind.c (_hurdsig_longjmp_from_handler): Fix a typo | ||
in assert. | ||
* iconv/strtab.c (strtabfinalize): Likewise. | ||
|
||
* libio/iofopncook.c (_IO_cookie_seekoff): Add prototype. | ||
|
||
2005-01-17 Roland McGrath <[email protected]> | ||
|
||
* nscd/Makefile (LDLIBS-nscd): New variable. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* C string table handling. | ||
Copyright (C) 2000, 2001 Free Software Foundation, Inc. | ||
Copyright (C) 2000, 2001, 2005 Free Software Foundation, Inc. | ||
Written by Ulrich Drepper <[email protected]>, 2000. | ||
This program is free software; you can redistribute it and/or modify | ||
|
@@ -326,7 +326,7 @@ strtabfinalize (struct Strtab *st, size_t *size) | |
copylen = 1; | ||
copystrings (st->root, &endp, ©len); | ||
assert (copylen == st->total + 1); | ||
assert (endp = retval + st->total + 1); | ||
assert (endp == retval + st->total + 1); | ||
*size = copylen; | ||
|
||
return retval; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters