diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-08-31 07:48:42 -0600 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2019-08-31 07:48:42 -0600 |
commit | 7937840f9631fbaaab33bdbad67040b28f5d0387 (patch) | |
tree | 0123999cc47187716d2abbfb3929b6f577f91ce4 /ipc/winpipe | |
parent | e4b957183c4a330f020f5188f3b30b59355efb80 (diff) |
ipc: windows: use protected prefix
Diffstat (limited to 'ipc/winpipe')
-rw-r--r-- | ipc/winpipe/sd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/winpipe/sd.go b/ipc/winpipe/sd.go index 4456917..64728ba 100644 --- a/ipc/winpipe/sd.go +++ b/ipc/winpipe/sd.go @@ -33,4 +33,4 @@ func SddlToSecurityDescriptor(sddl string) ([]byte, error) { sd := make([]byte, getSecurityDescriptorLength(sdBuffer)) copy(sd, (*[0xffff]byte)(unsafe.Pointer(sdBuffer))[:len(sd)]) return sd, nil -}
\ No newline at end of file +} |