qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] linux-user/syscall.c: Let lv always match val in do_getsockopt()
@ 2016-01-14  6:24 chengang
  2016-01-14  8:15 ` Laurent Vivier
  0 siblings, 1 reply; 7+ messages in thread
From: chengang @ 2016-01-14  6:24 UTC (permalink / raw)
  To: riku.voipio, laurent; +Cc: peter.maydell, Chen Gang, Chen Gang, qemu-devel, rth

From: Chen Gang <chengang@emindsoft.com.cn>

After host_to_target_sock_type(), the length of val may be changed, so
calculate the related lv, too.

Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
 linux-user/syscall.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index fcdca2a..0e95f35 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -1841,6 +1841,7 @@ static abi_long do_getsockopt(int sockfd, int level, int optname,
             return ret;
         if (optname == SO_TYPE) {
             val = host_to_target_sock_type(val);
+            lv = (val >> 8) ? 4 : 1;
         }
         if (len > lv)
             len = lv;
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-01-14  9:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-14  6:24 [Qemu-devel] [PATCH] linux-user/syscall.c: Let lv always match val in do_getsockopt() chengang
2016-01-14  8:15 ` Laurent Vivier
2016-01-14  9:01   ` Chen Gang
2016-01-14  9:10     ` Laurent Vivier
2016-01-14  9:37       ` Chen Gang
2016-01-14  9:41         ` Laurent Vivier
2016-01-14  9:44           ` Chen Gang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).