From: Andreas Jaeger Date: Mon, 8 May 2000 14:04:59 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc_2-1-91~441 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=97d9957b66f0b736a34520b4860891bb8e5cd020;p=thirdparty%2Fglibc.git Update. 2000-05-08 Andreas Jaeger * sysdeps/generic/lockf64.c (lockf64): Return -1 for overflow and set errno. --- diff --git a/ChangeLog b/ChangeLog index 913f8d461d2..7aebf4d1136 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-05-08 Andreas Jaeger + + * sysdeps/generic/lockf64.c (lockf64): Return -1 for overflow and + set errno. + 2000-05-08 Jakub Jelinek * elf/dl-lookup.c (add_dependency): Reallocate l_reldeps in diff --git a/sysdeps/generic/lockf64.c b/sysdeps/generic/lockf64.c index 074dd7d82ac..3d27964879d 100644 --- a/sysdeps/generic/lockf64.c +++ b/sysdeps/generic/lockf64.c @@ -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; + { + /* We can't represent the length. */ + __set_errno (EOVERFLOW); + return -1; + } memset ((char *) &fl, '\0', sizeof (fl));