Update fs.

This commit is contained in:
David Reid
2025-08-22 11:27:45 +10:00
parent 6fd62e6bbc
commit 825d2c4466
+1 -1
View File
@@ -4915,7 +4915,7 @@ static fs_result fs_mkdir_stdio_win32(const char* pPath)
int result; int result;
/* If it's a drive letter segment just pretend it's successful. */ /* If it's a drive letter segment just pretend it's successful. */
if (pPath[0] >= 'a' && pPath[0] <= 'z' || pPath[0] >= 'A' && pPath[0] <= 'Z') { if ((pPath[0] >= 'a' && pPath[0] <= 'z') || (pPath[0] >= 'A' && pPath[0] <= 'Z')) {
if (pPath[1] == ':' && pPath[2] == '\0') { if (pPath[1] == ':' && pPath[2] == '\0') {
return FS_SUCCESS; return FS_SUCCESS;
} }