diff options
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 3ff1e04235..53a11ab877 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -1348,7 +1348,6 @@ static abi_long do_getsockopt(int sockfd, int level, int optname, ret = get_errno(getsockopt(sockfd, level, optname, &val, &lv)); if (ret < 0) return ret; - val = tswap32(val); if (len > lv) len = lv; if (len == 4) { |