Merge the update suggested by @mattn; ref #4950

This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-03-07 14:58:05 +09:00
parent 30eaee30fa
commit 4687f8790c
+4 -2
View File
@@ -283,8 +283,10 @@ static int
mrb_file_is_absolute_path(const char *path)
{
#ifdef _WIN32
if (strlen(path) < 2) return 0;
return path[0] >= 64 && path[0] <= 90 && path[1] == ':'; // 64 to 90 is ASCII
#define IS_PATHSEP(x) (x == '/' || x == '\')
if (strlen(path) < 3) return 0;
return (isalpha(path[0]) && path[1] == ':' && IS_PATHSEP(path[2]));
#undef IS_PATHSEP
#else
return (path[0] == '/');
#endif