Add a missing break in record_linux_system_call
This adds a "break" at the end of the RECORD_SYS_RECVFROM case in record_linux_system_call. This seemed correct to me. 2018-05-04 Tom Tromey <tom@tromey.com> * linux-record.c (record_linux_system_call) <case RECORD_SYS_RECVFROM>: Add "break".
This commit is contained in:
parent
15c9ffd697
commit
449b1ac7ad
2 changed files with 6 additions and 0 deletions
|
@ -881,6 +881,7 @@ Do you want to stop the program?"),
|
|||
if (record_linux_sockaddr (regcache, tdep, tmpulongest, len))
|
||||
return -1;
|
||||
}
|
||||
break;
|
||||
case RECORD_SYS_RECV:
|
||||
regcache_raw_read_unsigned (regcache, tdep->arg2,
|
||||
&tmpulongest);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue