We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 07e5302 + 60b939e commit 8a38910Copy full SHA for 8a38910
compat/mingw.c
@@ -2916,7 +2916,9 @@ int mingw_rename(const char *pold, const char *pnew)
2916
* current system doesn't support FileRenameInfoEx. Keep us
2917
* from using it in future calls and retry.
2918
*/
2919
- if (gle == ERROR_INVALID_PARAMETER || gle == ERROR_NOT_SUPPORTED) {
+ if (gle == ERROR_INVALID_PARAMETER ||
2920
+ gle == ERROR_NOT_SUPPORTED ||
2921
+ gle == ERROR_INVALID_FUNCTION) {
2922
supports_file_rename_info_ex = 0;
2923
goto repeat;
2924
}
0 commit comments