Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump windows-sys from 0.52.0 to 0.59.0 #9339

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ winapi = { version = "^0.3", features = [
"ws2def",
] }
windows-acl = "*"
windows-sys = { version = "^0.52.0", features = [
windows-sys = { version = "^0.59.0", features = [
"Win32_Foundation",
"Win32_System_Environment",
] }
Expand Down
2 changes: 1 addition & 1 deletion components/core/src/os/process/windows_child.rs
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,7 @@ fn create_user_environment(token: HANDLE,
let mut new_env: Vec<u16> = Vec::new();
let mut block = ptr::null_mut();
cvt(Environment::CreateEnvironmentBlock(&mut block,
token as isize,
token as *mut std::ffi::c_void,
FALSE))?;
let mut tail: u32 = MAXDWORD;
let mut offset = 0;
Expand Down
Loading