qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] hw/wm8750: Fix potential buffer overflow


From: Aurelien Jarno
Subject: Re: [Qemu-devel] [PATCH] hw/wm8750: Fix potential buffer overflow
Date: Mon, 10 Sep 2012 15:17:30 +0200
User-agent: Mutt/1.5.21 (2010-09-15)

On Mon, Sep 03, 2012 at 10:56:00PM +0200, Stefan Weil wrote:
> Report from smatch:
> 
> hw/wm8750.c:369 wm8750_tx(12) error: buffer overflow 's->i2c_data' 2 <= 2
> 
> It looks like the preprocessor statements were simply misplaced.
> 
> Replace also __FUNCTION__ by __func__ to please checkpatch.pl.
> 
> Signed-off-by: Stefan Weil <address@hidden>
> ---
>  hw/wm8750.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/wm8750.c b/hw/wm8750.c
> index 11bcec3..44f138f 100644
> --- a/hw/wm8750.c
> +++ b/hw/wm8750.c
> @@ -361,10 +361,10 @@ static int wm8750_tx(I2CSlave *i2c, uint8_t data)
>      uint16_t value;
>  
>      if (s->i2c_len >= 2) {
> -        printf("%s: long message (%i bytes)\n", __FUNCTION__, s->i2c_len);
>  #ifdef VERBOSE
> -        return 1;
> +        printf("%s: long message (%i bytes)\n", __func__, s->i2c_len);
>  #endif
> +        return 1;
>      }
>      s->i2c_data[s->i2c_len ++] = data;
>      if (s->i2c_len != 2)
> -- 
> 1.7.10
> 

Thanks, applied.

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
address@hidden                 http://www.aurel32.net



reply via email to

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