Re: [PATCH] applesmc: Silence uninitialized warnings

From: Guenter Roeck
Date: Thu Jan 26 2012 - 12:14:48 EST


On Thu, 2012-01-26 at 06:08 -0500, Henrik Rydberg wrote:
> Some error paths do not set a result, leading to the (false)
> assumption that the value may be used uninitialized. Set results for
> those paths as well.
>
> Signed-off-by: Henrik Rydberg <rydberg@xxxxxxxxxxx>
> ---
> drivers/hwmon/applesmc.c | 8 ++++++--
> 1 files changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/hwmon/applesmc.c b/drivers/hwmon/applesmc.c
> index b989553..11f79bb 100644
> --- a/drivers/hwmon/applesmc.c
> +++ b/drivers/hwmon/applesmc.c
> @@ -344,8 +344,10 @@ static int applesmc_get_lower_bound(unsigned int *lo, const char *key)
> while (begin != end) {
> int middle = begin + (end - begin) / 2;
> entry = applesmc_get_entry_by_index(middle);
> - if (IS_ERR(entry))
> + if (IS_ERR(entry)) {
> + *lo = 0;
> return PTR_ERR(entry);
> + }
> if (strcmp(entry->key, key) < 0)
> begin = middle + 1;
> else
> @@ -364,8 +366,10 @@ static int applesmc_get_upper_bound(unsigned int *hi, const char *key)
> while (begin != end) {
> int middle = begin + (end - begin) / 2;
> entry = applesmc_get_entry_by_index(middle);
> - if (IS_ERR(entry))
> + if (IS_ERR(entry)) {
> + *hi = smcreg.key_count;
> return PTR_ERR(entry);
> + }
> if (strcmp(key, entry->key) < 0)
> end = middle;
> else

That was an annoying warning .. I checked the code several times by now
to make sure it is not real. Good idea to fix it.

Applied to -next for now. Linus did not (yet) accept my last set of
patches, so I am not sure if it was too much cleanup for a release
candidate.

Guenter


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/