Skip to content

Commit

Permalink
fix merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cre4ture committed Sep 23, 2024
1 parent 7ce4040 commit 064f71c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion library/std/src/os/windows/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,9 @@ impl CommandExt for process::Command {
value_ptr: *const c_void,
value_size: usize,
) -> &mut process::Command {
self.as_inner_mut().raw_attribute_ptr(attribute, value_ptr, value_size);
unsafe {
self.as_inner_mut().raw_attribute_ptr(attribute, value_ptr, value_size);
}
self
}
}
Expand Down
1 change: 1 addition & 0 deletions library/std/src/sys/pal/windows/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ impl Command {
size: value_size,
pointer: value_ptr as isize,
}),
);
}

pub fn spawn(
Expand Down

0 comments on commit 064f71c

Please sign in to comment.