repatch windows file delete

This commit is contained in:
Brandon Craig 2015-03-06 14:37:06 -07:00
parent 1f8f0b2194
commit 9928597543

View File

@ -389,7 +389,7 @@ Java_java_io_File_delete(JNIEnv* e, jclass, jstring path)
int r;
if (chars) {
#ifdef PLATFORM_WINDOWS
if (GetFileAttributes(chars) == FILE_ATTRIBUTE_DIRECTORY) {
if (GetFileAttributes(chars) & FILE_ATTRIBUTE_DIRECTORY) {
r = !RemoveDirectory(chars);
} else {
r = REMOVE(chars);