We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a7fb47 commit 360d6fbCopy full SHA for 360d6fb
talpid-windows/src/fs.rs
@@ -17,7 +17,7 @@ pub fn is_admin_owned<T: AsRawHandle>(handle: T) -> io::Result<bool> {
17
let mut security_descriptor: *mut SECURITY_DESCRIPTOR = ptr::null_mut();
18
let mut owner: *mut SID = ptr::null_mut();
19
20
- // SAFETY: `handle` is a valid handle. We return a pointer to the owner associated with the handle(?)
+ // SAFETY: `handle` is a valid handle
21
let result = unsafe {
22
GetSecurityInfo(
23
handle.as_raw_handle() as isize,
0 commit comments