Commit 825d2c44 authored by David Reid's avatar David Reid

Update fs.

parent 6fd62e6b
...@@ -4915,7 +4915,7 @@ static fs_result fs_mkdir_stdio_win32(const char* pPath) ...@@ -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;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment