Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 215bf09

Browse files
committed
chore: switch syscall.SyscallN back to syscall.Syscall6
Until the current version, SyscallN always escapes the variadic argument
1 parent 91d54bd commit 215bf09

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

component/process/process_windows.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ func newSearcher(isV4, isTCP bool) *searcher {
180180
func getTransportTable(fn uintptr, family int, class int) ([]byte, error) {
181181
for size, buf := uint32(8), make([]byte, 8); ; {
182182
ptr := unsafe.Pointer(&buf[0])
183-
err, _, _ := syscall.SyscallN(fn, uintptr(ptr), uintptr(unsafe.Pointer(&size)), 0, uintptr(family), uintptr(class), 0)
183+
err, _, _ := syscall.Syscall6(fn, uintptr(ptr), uintptr(unsafe.Pointer(&size)), 0, uintptr(family), uintptr(class), 0, 0)
184184

185185
switch err {
186186
case 0:
@@ -215,12 +215,15 @@ func getExecPathFromPID(pid uint32) (string, error) {
215215

216216
buf := make([]uint16, syscall.MAX_LONG_PATH)
217217
size := uint32(len(buf))
218-
r1, _, err := syscall.SyscallN(
218+
r1, _, err := syscall.Syscall6(
219219
queryProcName,
220220
uintptr(h),
221221
uintptr(0),
222222
uintptr(unsafe.Pointer(&buf[0])),
223223
uintptr(unsafe.Pointer(&size)),
224+
0,
225+
0,
226+
0,
224227
)
225228
if r1 == 0 {
226229
return "", err

0 commit comments

Comments
 (0)