mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
posix: Use 64 bit stat for posix_fallocate fallback (BZ# 29207)
This is a missing spot initially from 52a5fe70a2
.
Checked on i686-linux-gnu.
This commit is contained in:
parent
ec995fb215
commit
574ba60fc8
@ -30,7 +30,7 @@
|
||||
int
|
||||
posix_fallocate (int fd, __off_t offset, __off_t len)
|
||||
{
|
||||
struct stat64 st;
|
||||
struct __stat64_t64 st;
|
||||
|
||||
if (offset < 0 || len < 0)
|
||||
return EINVAL;
|
||||
@ -48,7 +48,7 @@ posix_fallocate (int fd, __off_t offset, __off_t len)
|
||||
}
|
||||
|
||||
/* We have to make sure that this is really a regular file. */
|
||||
if (__fstat64 (fd, &st) != 0)
|
||||
if (__fstat64_time64 (fd, &st) != 0)
|
||||
return EBADF;
|
||||
if (S_ISFIFO (st.st_mode))
|
||||
return ESPIPE;
|
||||
|
@ -30,7 +30,7 @@
|
||||
int
|
||||
__posix_fallocate64_l64 (int fd, __off64_t offset, __off64_t len)
|
||||
{
|
||||
struct stat64 st;
|
||||
struct __stat64_t64 st;
|
||||
|
||||
if (offset < 0 || len < 0)
|
||||
return EINVAL;
|
||||
@ -48,7 +48,7 @@ __posix_fallocate64_l64 (int fd, __off64_t offset, __off64_t len)
|
||||
}
|
||||
|
||||
/* We have to make sure that this is really a regular file. */
|
||||
if (__fstat64 (fd, &st) != 0)
|
||||
if (__fstat64_time64 (fd, &st) != 0)
|
||||
return EBADF;
|
||||
if (S_ISFIFO (st.st_mode))
|
||||
return ESPIPE;
|
||||
|
Loading…
Reference in New Issue
Block a user