Fix x86_64 socket syscall (#13050)

Currently syscall nr 41 is named socketcall. However on x86_64
syscall nr 41 is named socket and expects 3 arguments.
This commit is contained in:
blenk92 2019-02-11 16:52:05 +01:00 committed by radare
parent 7f8495dea7
commit fca950d95f

View File

@ -40,7 +40,7 @@ alarm=0x80,37,1,
setitimer=0x80,38,3,
getpid=0x80,39,0,
sendfile=0x80,40,4,
socketcall=0x80,41,2,
socket=0x80,41,3,
connect=0x80,42,3,
accept=0x80,43,3,
sendto=0x80,44,6,