mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-26 06:50:07 +00:00
Update.
2000-05-08 Andreas Jaeger <aj@suse.de> * sysdeps/generic/lockf64.c (lockf64): Return -1 for overflow and set errno.
This commit is contained in:
parent
ded812f479
commit
97d9957b66
@ -1,3 +1,8 @@
|
||||
2000-05-08 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* sysdeps/generic/lockf64.c (lockf64): Return -1 for overflow and
|
||||
set errno.
|
||||
|
||||
2000-05-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* elf/dl-lookup.c (add_dependency): Reallocate l_reldeps in
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1994, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1994,96,97,98,99,2000 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -31,8 +31,11 @@ lockf64 (int fd, int cmd, off64_t len64)
|
||||
off_t len = (off_t) len64;
|
||||
|
||||
if (len64 != (off64_t) len)
|
||||
{
|
||||
/* We can't represent the length. */
|
||||
return EOVERFLOW;
|
||||
__set_errno (EOVERFLOW);
|
||||
return -1;
|
||||
}
|
||||
|
||||
memset ((char *) &fl, '\0', sizeof (fl));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user