Merge pull request #4950 from Reckordp/master

Absolute path for windows
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-03-07 14:53:37 +09:00
committed by GitHub
+5
View File
@@ -282,7 +282,12 @@ mrb_file__getwd(mrb_state *mrb, mrb_value klass)
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
#else
return (path[0] == '/');
#endif
}
static mrb_value