Use secure API if available.

This commit is contained in:
Matti Virolainen 2015-03-06 12:23:14 +02:00 committed by Tony Kelman
parent 04c5a9c083
commit 78c34af016

View File

@ -55,7 +55,7 @@ int p_ftruncate(int fd, git_off_t size)
return -1;
}
#if !defined(__MINGW32__)
#if !defined(__MINGW32__) || defined(MINGW_HAS_SECURE_API)
return ((_chsize_s(fd, size) == 0) ? 0 : -1);
#else
/* TODO MINGW32 Find a replacement for _chsize() that handles big files. */