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

Cc: Andrzej Zaborowski <balr...@gmail.com>
Signed-off-by: Stefan Weil <s...@weilnetz.de>
---
 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