You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libafl/src/bolts/llmp.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1871,7 +1871,7 @@ where
1871
1871
// (For now) the thread remote broker 2 broker just acts like a "normal" llmp client, except it proxies all messages to the attached socket, in both directions.
1872
1872
thread::spawn(move || {
1873
1873
// as always, call post_fork to potentially reconnect the provider (for threaded/forked use)
1874
-
shmem_provider_clone.post_fork(true);
1874
+
shmem_provider_clone.post_fork(true).unwrap();
1875
1875
1876
1876
#[cfg(fature = "llmp_debug")]
1877
1877
println!("B2b: Spawned proxy thread");
@@ -2064,7 +2064,7 @@ where
2064
2064
2065
2065
let ret = thread::spawn(move || {
2066
2066
// Call `post_fork` (even though this is not forked) so we get a new connection to the cloned `ShMemServer` if we are using a `ServedShMemProvider`
0 commit comments