qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] wm8750: Fix calculation of number of array elements


From: Stefan Weil
Subject: [Qemu-devel] [PATCH] wm8750: Fix calculation of number of array elements
Date: Mon, 9 Jan 2012 19:32:04 +0100

Coverity says that the division by sizeof(*s->rate) might be wrong.
I think that coverity is right.

Cc: Andrzej Zaborowski <address@hidden>
Signed-off-by: Stefan Weil <address@hidden>
---
 hw/wm8750.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/wm8750.c b/hw/wm8750.c
index 39383f4..b3589d3 100644
--- a/hw/wm8750.c
+++ b/hw/wm8750.c
@@ -563,7 +563,7 @@ static void wm8750_pre_save(void *opaque)
 {
     WM8750State *s = opaque;
 
-    s->rate_vmstate = (s->rate - wm_rate_table) / sizeof(*s->rate);
+    s->rate_vmstate = s->rate - wm_rate_table;
 }
 
 static int wm8750_post_load(void *opaque, int version_id)
-- 
1.7.2.5




reply via email to

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