Re: [PATCH] iio: Fix uninitialized variable

From: Javier Carrasco
Date: Fri Oct 11 2024 - 07:03:13 EST


On 11/10/2024 12:54, Andy Shevchenko wrote:
> On Fri, Oct 11, 2024 at 05:37:45PM +0800, Yo-Jung (Leo) Lin wrote:
>> clang found that the "offset" in bmp580_trigger_handler doesn't get
>> initialized before access. Add proper initialization to this variable.
>
> ...
>
>> struct bmp280_data *data = iio_priv(indio_dev);
>> - int ret, offset;
>> + int ret, offset = 0;
>
> Can it be done closer to the actual user of it?
>
>

Actually, offset could be initialized to sizeof(32), and only used for
the temperature calculations.

+ int ret, offset = sizeof(s32);

The first memcpy would use 0 as index, as it did before.


Best regards,
Javier Carrasco