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 1ddaeba commit 3356394Copy full SHA for 3356394
src/symbolize/gimli/libs_haiku.rs
@@ -7,14 +7,15 @@
7
8
use super::mystd::borrow::ToOwned;
9
use super::mystd::ffi::{CStr, OsStr};
10
+use super::mystd::mem::MaybeUninit;
11
use super::mystd::os::unix::prelude::*;
12
use super::{Library, LibrarySegment, Vec};
13
14
pub(super) fn native_libraries() -> Vec<Library> {
15
let mut libraries: Vec<Library> = Vec::new();
16
17
unsafe {
- let mut info = mem::MaybeUninit::<libc::image_info>::zeroed();
18
+ let mut info = MaybeUninit::<libc::image_info>::zeroed();
19
let mut cookie: i32 = 0;
20
// Load the first image to get a valid info struct
21
let mut status =
0 commit comments