From 4c0fe6fe42ecf97c9f7f5a0921638560c89973a2 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Fri, 10 May 2013 11:41:53 +0200 Subject: Use *stat64 instead of *stat in installed programs This ensures reliable operation on file systems with inode numbers which do not fit into 32 bits. --- iconv/iconv_charmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'iconv/iconv_charmap.c') diff --git a/iconv/iconv_charmap.c b/iconv/iconv_charmap.c index b1a0610976..745adcc510 100644 --- a/iconv/iconv_charmap.c +++ b/iconv/iconv_charmap.c @@ -171,11 +171,11 @@ charmap_conversion (const char *from_code, struct charmap_t *from_charmap, } #ifdef _POSIX_MAPPED_FILES - struct stat st; + struct stat64 st; char *addr; /* We have possibilities for reading the input file. First try to mmap() it since this will provide the fastest solution. */ - if (fstat (fd, &st) == 0 + if (fstat64 (fd, &st) == 0 && ((addr = mmap (NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0)) != MAP_FAILED)) { -- cgit v1.2.3