Skip to content

Commit

Permalink
Fix converting argument looks like -DVAR=str1;c:/path1;str2;c:/path2
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexpux committed Oct 20, 2015
1 parent 1d21280 commit d31de1b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions winsup/cygwin/msys2_path_conv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,9 @@ path_type find_path_start_and_type(const char** src, int recurse, const char* en
if (isalpha(*it)) {
it += 1;
starts_with_minus_alpha = 1;
if (memchr(it, ';', end - it)) {
return WINDOWS_PATH_LIST;
}
}
}

Expand Down

0 comments on commit d31de1b

Please sign in to comment.