mirror of https://github.com/xemu-project/xemu.git
wm8750: Fix calculation of number of array elements
Coverity says that the division by sizeof(*s->rate) might be wrong. I think that coverity is right. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Andrzej Zaborowski <andrew.zaborowski@intel.com>
This commit is contained in:
parent
c7c530cd3e
commit
9841aee16f
|
@ -563,7 +563,7 @@ static void wm8750_pre_save(void *opaque)
|
||||||
{
|
{
|
||||||
WM8750State *s = 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)
|
static int wm8750_post_load(void *opaque, int version_id)
|
||||||
|
|
Loading…
Reference in New Issue