mirror of
https://github.com/ziglang/zig.git
synced 2026-01-11 18:05:11 +00:00
Merge pull request #4129 from daurnimator/windows-child_process
Fix windows child process creation
This commit is contained in:
commit
e06a6b9645
@ -634,12 +634,12 @@ pub const ChildProcess = struct {
|
||||
|
||||
var it = mem.tokenize(PATH, ";");
|
||||
retry: while (it.next()) |search_path| {
|
||||
const path_no_ext = try fs.path.join(self.allocator, &[_][]const u8{ search_path, app_name });
|
||||
defer self.allocator.free(path_no_ext);
|
||||
|
||||
var ext_it = mem.tokenize(PATHEXT, ";");
|
||||
while (ext_it.next()) |app_ext| {
|
||||
const app_basename = try mem.concat(self.allocator, u8, &[_][]const u8{ app_name[0 .. app_name.len - 1], app_ext });
|
||||
defer self.allocator.free(app_basename);
|
||||
|
||||
const joined_path = try fs.path.join(self.allocator, &[_][]const u8{ search_path, app_basename });
|
||||
const joined_path = try mem.concat(self.allocator, u8, &[_][]const u8{ path_no_ext, app_ext });
|
||||
defer self.allocator.free(joined_path);
|
||||
|
||||
const joined_path_w = try unicode.utf8ToUtf16LeWithNull(self.allocator, joined_path);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user