GetFileAttributesEx fix

This commit is contained in:
arvidn 2015-12-18 17:44:04 -05:00 committed by arvidn
parent 99091a67d4
commit e9b98c7d2e
2 changed files with 2 additions and 1 deletions

View File

@ -76,6 +76,7 @@
* almost completely changed the storage interface (for custom storage)
* added support for hashing pieces in multiple threads
* fixed win64 build (GetFileAttributesEx)
* fixed bug when deleting files for magnet links before they had metadata
1.0.7 release

View File

@ -363,7 +363,7 @@ namespace libtorrent
f.resize(f.size() - 1);
#endif
WIN32_FILE_ATTRIBUTE_DATA data;
if (!GetFileAttributesEx(f.c_str(), GetFileExInfoStandard, &data))
if (!GetFileAttributesEx_(f.c_str(), GetFileExInfoStandard, &data))
{
ec.assign(GetLastError(), system_category());
return;