mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* sysdeps/unix/bsd/telldir.c (seekdir): Correct type of second parameter. * sysdeps/generic/setenv.c (__add_to_environ): Initialize ep after we have the lock.
This commit is contained in:
@ -1,7 +1,10 @@
|
|||||||
1999-08-19 Ulrich Drepper <drepper@cygnus.com>
|
1999-08-19 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* sysdeps/generic/setenv.c: Update(__add_to_environ): Initialize
|
* sysdeps/unix/bsd/telldir.c (seekdir): Correct type of second
|
||||||
ep after we have the lock.
|
parameter.
|
||||||
|
|
||||||
|
* sysdeps/generic/setenv.c (__add_to_environ): Initialize ep
|
||||||
|
after we have the lock.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h: New file.
|
* sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h: New file.
|
||||||
Patch by Richard Henderson.
|
Patch by Richard Henderson.
|
||||||
|
@ -44,7 +44,7 @@ telldir (dirp)
|
|||||||
DIR *dirp;
|
DIR *dirp;
|
||||||
{
|
{
|
||||||
struct record *new;
|
struct record *new;
|
||||||
off_t pos;
|
long int pos;
|
||||||
|
|
||||||
new = malloc (sizeof *new);
|
new = malloc (sizeof *new);
|
||||||
if (new == NULL)
|
if (new == NULL)
|
||||||
@ -71,7 +71,7 @@ telldir (dirp)
|
|||||||
void
|
void
|
||||||
seekdir (dirp, pos)
|
seekdir (dirp, pos)
|
||||||
DIR *dirp;
|
DIR *dirp;
|
||||||
__off_t pos;
|
long int pos;
|
||||||
{
|
{
|
||||||
struct record *r, **prevr;
|
struct record *r, **prevr;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user