From c9ebff4736128186121424364c1c62224b02aee3 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 12 Feb 2020 17:23:29 -0500 Subject: fix remaining direct use of stat syscalls outside fstatat.c because struct stat is no longer assumed to correspond to the structure used by the stat-family syscalls, it's not valid to make any of these syscalls directly using a buffer of type struct stat. commit 9493892021eac4edf1776d945bcdd3f7a96f6978 moved all logic around this change for stat-family functions into fstatat.c, making the others wrappers for it. but a few other direct uses of the syscall were overlooked. the ones in tmpnam/tempnam are harmless since the syscalls are just used to test for file existence. however, the uses in fchmodat and __map_file depend on getting accurate file properties, and these functions may actually have been broken one or more mips variants due to removal of conversion hacks from syscall_arch.h. as a low-risk fix, simply use struct kstat in place of struct stat in the affected places. --- src/stdio/tmpnam.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/stdio/tmpnam.c') diff --git a/src/stdio/tmpnam.c b/src/stdio/tmpnam.c index 6c7c253a..d667a836 100644 --- a/src/stdio/tmpnam.c +++ b/src/stdio/tmpnam.c @@ -5,6 +5,7 @@ #include #include #include "syscall.h" +#include "kstat.h" #define MAXTRIES 100 @@ -17,10 +18,10 @@ char *tmpnam(char *buf) for (try=0; try