Skip to content

Conversation

therustmonk
Copy link
Contributor

Can't compile in windows without std::mem import.

stack_protected.rs

#[cfg(windows)]
fn page_size() -> usize {
    unsafe {
        let mut info = mem::zeroed(); // this fails
        libc::GetSystemInfo(&mut info);
        info.dwPageSize as usize
    }
}

@zonyitoo
Copy link
Contributor

Hmm, I should just merge the fix on context-rs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants