> From: Vijo Cherian <[email protected]> > Date: Fri, 3 Mar 2017 11:33:05 -0800 > Cc: [email protected] > > bool > file_exists_p (const char *filename, file_stats_t *fstats) > { > struct stat buf; > > #if defined(WINDOWS) || defined(__VMS) > return stat (filename, &buf) >= 0; > #else
This leaves fstats untouched on Windows. At least access_err should be set, I think.
