set all file times

why ... why is this necessary
This commit is contained in:
John Cupitt 2017-09-11 11:21:28 +01:00
parent 9cafae8767
commit d4ed0f84d8
1 changed files with 1 additions and 1 deletions

View File

@ -560,7 +560,7 @@ vips__set_create_time( int fd )
return;
GetSystemTime( &st );
SystemTimeToFileTime( &st, &ft );
SetFileTime( handle, &ft, NULL, NULL );
SetFileTime( handle, &ft, &ft, &ft );
}
#endif /*OS_WIN32*/