OSDN Git Service

hw/arm/omap1: Avoid unintended sign extension writing omap_rtc YEARS_REG
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 13 May 2014 15:09:39 +0000 (16:09 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 13 May 2014 15:09:39 +0000 (16:09 +0100)
commit7e7e5858f83ae711b08d11e2268c6fc6f8385fb7
tree329a6e931144270326a6fafe1be946d0ecda080d
parentc94239fe5633fb9816b5bbc61ccc134ce7171b2b
hw/arm/omap1: Avoid unintended sign extension writing omap_rtc YEARS_REG

When writing to the YEARS_REG register, if the year value is
99 then the multiplication by 31536000 will overflow into
the sign bit of a 32 bit value and then be erroneously
sign-extended if time_t is 64 bits. Add a cast to avoid this.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
hw/arm/omap1.c