Skip to content

Commit b3c721c

Browse files
committed
rust: Drop box ptr
Because of this recent change to rust, our close function warned that we calculate Box::from_raw but never use it. I added the suggested call to drop() around the function. rust-lang/rust#99270 (cherry picked from commit 6836e4c)
1 parent ff2cfbd commit b3c721c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/rust/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ mod ffi {
368368

369369
pub(super) extern fn close(selfp: *mut c_void) {
370370
unsafe {
371-
Box::from_raw(selfp as *mut Box<dyn Server>);
371+
drop(Box::from_raw(selfp as *mut Box<dyn Server>));
372372
}
373373
}
374374

0 commit comments

Comments
 (0)