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

Rollup of 10 pull requests #123004

Merged
merged 21 commits into from
Mar 24, 2024
Merged
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d49d136
conditionally ignore fatal diagnostic in the SilentEmitter
ytmimi Mar 19, 2024
92325a9
Fixed the `private-dependency` bug: If the directly dependent crate i…
h1467792822 Mar 19, 2024
ab92699
Unbox and unwrap the contents of `StatementKind::Coverage`
Zalathar Mar 23, 2024
37dbe40
Add a regression test for #117310
ShoyuVanilla Mar 23, 2024
894555f
Track run-make-support lib in common inputs stamp
jieyouxu Mar 23, 2024
b67ad8f
Rename `Arguments::as_const_str` to `as_statically_known_str`
cuviper Mar 24, 2024
fc5085d
add test for #90192
matthiaskrgr Mar 22, 2024
7aa76a7
Fix build failure on ARM/AArch64/PowerPC/RISC-V FreeBSD/NetBSD
taiki-e Mar 24, 2024
0727b6a
panic-in-panic-hook: formatting a message that's just a string is ris…
RalfJung Mar 24, 2024
4b84df9
std::thread: refine available_parallelism for solaris/illumos.
devnexen Mar 24, 2024
1871ea5
fix build.
devnexen Mar 24, 2024
3fe9f66
Rollup merge of #122737 - ytmimi:conditionally_ignore_fatal_diagnosti…
matthiaskrgr Mar 24, 2024
04eedb2
Rollup merge of #122757 - h1467792822:priv-dep, r=davidtwco
matthiaskrgr Mar 24, 2024
702261d
Rollup merge of #122886 - matthiaskrgr:issue90192, r=fee1-dead
matthiaskrgr Mar 24, 2024
19d3827
Rollup merge of #122937 - Zalathar:unbox, r=oli-obk
matthiaskrgr Mar 24, 2024
96a5348
Rollup merge of #122949 - ShoyuVanilla:issue-117310, r=lcnr
matthiaskrgr Mar 24, 2024
5281fe2
Rollup merge of #122962 - jieyouxu:stamp-rmake-support-lib, r=onur-ozkan
matthiaskrgr Mar 24, 2024
6b1f4e4
Rollup merge of #122977 - cuviper:as_statically_known_str, r=RalfJung
matthiaskrgr Mar 24, 2024
a5852ef
Rollup merge of #122983 - taiki-e:bsd, r=workingjubilee
matthiaskrgr Mar 24, 2024
f67fb08
Rollup merge of #122984 - RalfJung:panic-in-hook, r=Amanieu
matthiaskrgr Mar 24, 2024
cdf86bf
Rollup merge of #122992 - devnexen:available_parallelism_sol_upd, r=A…
matthiaskrgr Mar 24, 2024
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
2 changes: 1 addition & 1 deletion library/std/src/sys/pal/unix/net.rs
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ impl Socket {
const AF_NAME_MAX: usize = 16;
let mut buf = [0; AF_NAME_MAX];
for (src, dst) in name.to_bytes().iter().zip(&mut buf[..AF_NAME_MAX - 1]) {
*dst = *src as i8;
*dst = *src as libc::c_char;
}
let mut arg: libc::accept_filter_arg = unsafe { mem::zeroed() };
arg.af_name = buf;
Expand Down