diff mbox series

hw/display/sm501: Remove unneeded increment from loop

Message ID 20230405161234.6EF0A74633D@zero.eik.bme.hu
State New
Headers show
Series hw/display/sm501: Remove unneeded increment from loop | expand

Commit Message

BALATON Zoltan April 5, 2023, 3:57 p.m. UTC
As Coverity points out (CID 1508621) the calculation to increment i in
the fill fallback loop is ineffective as it is overwritten in next
statement. This was left there by mistake from a previous version but
is not needed in the current approach so remove the superfluous
increment statement.

Reported-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
---
 hw/display/sm501.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Philippe Mathieu-Daudé April 5, 2023, 4:31 p.m. UTC | #1
On 5/4/23 17:57, BALATON Zoltan wrote:
> As Coverity points out (CID 1508621) the calculation to increment i in
> the fill fallback loop is ineffective as it is overwritten in next
> statement. This was left there by mistake from a previous version but
> is not needed in the current approach so remove the superfluous
> increment statement.
> 
> Reported-by: Peter Maydell <peter.maydell@linaro.org>
> Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
> ---
>   hw/display/sm501.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Daniel Henrique Barboza April 13, 2023, 9:26 p.m. UTC | #2
On 4/5/23 12:57, BALATON Zoltan wrote:
> As Coverity points out (CID 1508621) the calculation to increment i in
> the fill fallback loop is ineffective as it is overwritten in next
> statement. This was left there by mistake from a previous version but
> is not needed in the current approach so remove the superfluous
> increment statement.
> 
> Reported-by: Peter Maydell <peter.maydell@linaro.org>
> Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
> ---

Queued in gitlab.com/danielhb/qemu/tree/ppc-next. I'll send it out as soon
as 8.1 dev window opens up.

Thanks,

Daniel

>   hw/display/sm501.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/display/sm501.c b/hw/display/sm501.c
> index dbabbc4339..0eecd00701 100644
> --- a/hw/display/sm501.c
> +++ b/hw/display/sm501.c
> @@ -901,7 +901,7 @@ static void sm501_2d_operation(SM501State *s)
>               /* fallback when pixman failed or we don't want to call it */
>               uint8_t *d = s->local_mem + dst_base;
>               unsigned int x, y, i;
> -            for (y = 0; y < height; y++, i += dst_pitch * bypp) {
> +            for (y = 0; y < height; y++) {
>                   i = (dst_x + (dst_y + y) * dst_pitch) * bypp;
>                   for (x = 0; x < width; x++, i += bypp) {
>                       stn_he_p(&d[i], bypp, color);
diff mbox series

Patch

diff --git a/hw/display/sm501.c b/hw/display/sm501.c
index dbabbc4339..0eecd00701 100644
--- a/hw/display/sm501.c
+++ b/hw/display/sm501.c
@@ -901,7 +901,7 @@  static void sm501_2d_operation(SM501State *s)
             /* fallback when pixman failed or we don't want to call it */
             uint8_t *d = s->local_mem + dst_base;
             unsigned int x, y, i;
-            for (y = 0; y < height; y++, i += dst_pitch * bypp) {
+            for (y = 0; y < height; y++) {
                 i = (dst_x + (dst_y + y) * dst_pitch) * bypp;
                 for (x = 0; x < width; x++, i += bypp) {
                     stn_he_p(&d[i], bypp, color);