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 aa1994a commit e98e048Copy full SHA for e98e048
internal/lsa/syscall.go
@@ -33,7 +33,7 @@ func LsaFreeReturnBuffer(buffer uintptr) error {
33
return LsaNtStatusToWinError(r0)
34
}
35
func LsaNtStatusToWinError(ntstatus uintptr) error {
36
- r0, _, errno := syscall.SyscallN(procLsaNtStatusToWinError.Addr(), 1, ntstatus)
+ r0, _, errno := syscall.SyscallN(procLsaNtStatusToWinError.Addr(), ntstatus)
37
switch errno { // nolint:exhaustive
38
case windows.ERROR_SUCCESS:
39
if r0 == 0 {
0 commit comments