We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46e010b commit 9b4fb23Copy full SHA for 9b4fb23
libafl/src/bolts/llmp.rs
@@ -2081,7 +2081,7 @@ where
2081
if (*msg).tag == LLMP_TAG_NEW_SHM_CLIENT {
2082
/* This client informs us about yet another new client
2083
add it to the list! Also, no need to forward this msg. */
2084
- let msg_buf_len_padded = *ptr::addr_of!((*msg).buf_len_padded);
+ let msg_buf_len_padded = (*msg).buf_len_padded;
2085
if (*msg).buf_len < size_of::<LlmpPayloadSharedMapInfo>() as u64 {
2086
#[cfg(feature = "std")]
2087
println!("Ignoring broken CLIENT_ADDED msg due to incorrect size. Expected {} but got {}",
0 commit comments