mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
Fix SDK detection if no SDK installed.
This commit is contained in:
@@ -707,8 +707,8 @@ bool find_msvc_install_from_env_vars(Find_Result_Utf8 *result) {
|
|||||||
|
|
||||||
isize lo = {0};
|
isize lo = {0};
|
||||||
isize hi = {0};
|
isize hi = {0};
|
||||||
for (isize c = 0; c <= path.len; c += 1) {
|
for (isize c = 0; c < path.len; c += 1) {
|
||||||
if (c != path.len && path[c] != ';') {
|
if (path[c] != ';') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user