diff options
author | Amit Shah | 2010-01-13 11:54:43 +0100 |
---|---|---|
committer | Anthony Liguori | 2010-01-14 00:14:15 +0100 |
commit | 22c253d9d659af76279c9d96acbbf105ea120753 (patch) | |
tree | f1dfd40034d8bd7301092d0479fa68686dc7dde0 /hw/virtio-net.c | |
parent | vl.c: Remove dead assignment (diff) | |
download | qemu-22c253d9d659af76279c9d96acbbf105ea120753.tar.gz qemu-22c253d9d659af76279c9d96acbbf105ea120753.tar.xz qemu-22c253d9d659af76279c9d96acbbf105ea120753.zip |
virtio: net: remove dead assignment
clang-analyzer points out value assigned to 'len' is not used.
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/virtio-net.c')
-rw-r--r-- | hw/virtio-net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio-net.c b/hw/virtio-net.c index 02d9180f74..6e48997c0e 100644 --- a/hw/virtio-net.c +++ b/hw/virtio-net.c @@ -532,7 +532,7 @@ static ssize_t virtio_net_receive(VLANClientState *nc, const uint8_t *buf, size_ int len, total; struct iovec sg[VIRTQUEUE_MAX_SIZE]; - len = total = 0; + total = 0; if ((i != 0 && !n->mergeable_rx_bufs) || virtqueue_pop(n->rx_vq, &elem) == 0) { |