Skip to content

Commit 792f162

Browse files
committed
fix: find process panic
1 parent 215bf09 commit 792f162

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

component/process/process_windows.go

+3-6
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.Syscall6(fn, uintptr(ptr), uintptr(unsafe.Pointer(&size)), 0, uintptr(family), uintptr(class), 0, 0)
183+
err, _, _ := syscall.Syscall6(fn, 6, uintptr(ptr), uintptr(unsafe.Pointer(&size)), 0, uintptr(family), uintptr(class), 0)
184184

185185
switch err {
186186
case 0:
@@ -216,15 +216,12 @@ func getExecPathFromPID(pid uint32) (string, error) {
216216
buf := make([]uint16, syscall.MAX_LONG_PATH)
217217
size := uint32(len(buf))
218218
r1, _, err := syscall.Syscall6(
219-
queryProcName,
219+
queryProcName, 4,
220220
uintptr(h),
221221
uintptr(0),
222222
uintptr(unsafe.Pointer(&buf[0])),
223223
uintptr(unsafe.Pointer(&size)),
224-
0,
225-
0,
226-
0,
227-
)
224+
0, 0)
228225
if r1 == 0 {
229226
return "", err
230227
}

0 commit comments

Comments
 (0)