qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 2/3] vhost: fix mem_sections memory corruption


From: Avi Kivity
Subject: [Qemu-devel] [PATCH 2/3] vhost: fix mem_sections memory corruption
Date: Mon, 9 Jan 2012 14:04:53 +0200

A memset() used to delete an entry in an array did not take into account
the array element's size.

Signed-off-by: Avi Kivity <address@hidden>
---
 hw/vhost.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/hw/vhost.c b/hw/vhost.c
index 541c716..d924fb0 100644
--- a/hw/vhost.c
+++ b/hw/vhost.c
@@ -456,7 +456,7 @@ static void vhost_region_del(MemoryListener *listener,
             == section->offset_within_address_space) {
             --dev->n_mem_sections;
             memmove(&dev->mem_sections[i], &dev->mem_sections[i+1],
-                    dev->n_mem_sections - i);
+                    (dev->n_mem_sections - i) * sizeof(*dev->mem_sections));
             break;
         }
     }
-- 
1.7.7.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]