Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sdLen (0.81 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    func (selfRelativeSD *SECURITY_DESCRIPTOR) copySelfRelativeSecurityDescriptor() *SECURITY_DESCRIPTOR {
    	sdLen := int(selfRelativeSD.Length())
    	const min = int(unsafe.Sizeof(SECURITY_DESCRIPTOR{}))
    	if sdLen < min {
    		sdLen = min
    	}
    
    	src := unsafe.Slice((*byte)(unsafe.Pointer(selfRelativeSD)), sdLen)
    	// SECURITY_DESCRIPTOR has pointers in it, which means checkptr expects for it to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top