diff mbox

[PULL,09/10] net: make iov_to_buf take right size argument in nc_sendv_compat()

Message ID 1445926124-30681-10-git-send-email-jasowang@redhat.com
State New
Headers show

Commit Message

Jason Wang Oct. 27, 2015, 6:08 a.m. UTC
From: Yang Hongyang <yanghy@cn.fujitsu.com>

We want "buf, sizeof(buf)" here.  sizeof(buffer) is the size of a
pointer, which is wrong.
Thanks to Paolo for pointing it out.

Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
 net/net.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/net/net.c b/net/net.c
index 70a3576..2f2b39e 100644
--- a/net/net.c
+++ b/net/net.c
@@ -708,7 +708,7 @@  static ssize_t nc_sendv_compat(NetClientState *nc, const struct iovec *iov,
         offset = iov[0].iov_len;
     } else {
         buffer = buf;
-        offset = iov_to_buf(iov, iovcnt, 0, buffer, sizeof(buffer));
+        offset = iov_to_buf(iov, iovcnt, 0, buf, sizeof(buf));
     }
 
     if (flags & QEMU_NET_PACKET_FLAG_RAW && nc->info->receive_raw) {