Patch "media: cxd2880-spi: Fix a null pointer dereference on error handling path" has been added to the 5.4-stable tree

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

 



This is a note to let you know that I've just added the patch titled

    media: cxd2880-spi: Fix a null pointer dereference on error handling path

to the 5.4-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     media-cxd2880-spi-fix-a-null-pointer-dereference-on-.patch
and it can be found in the queue-5.4 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 014abe85dfb8749df5e34c022c0d861bcc9c1fef
Author: Colin Ian King <colin.king@xxxxxxxxxxxxx>
Date:   Tue Jul 20 18:07:49 2021 +0200

    media: cxd2880-spi: Fix a null pointer dereference on error handling path
    
    [ Upstream commit 11b982e950d2138e90bd120501df10a439006ff8 ]
    
    Currently the null pointer check on dvb_spi->vcc_supply is inverted and
    this leads to only null values of the dvb_spi->vcc_supply being passed
    to the call of regulator_disable causing null pointer dereferences.
    Fix this by only calling regulator_disable if dvb_spi->vcc_supply is
    not null.
    
    Addresses-Coverity: ("Dereference after null check")
    
    Fixes: dcb014582101 ("media: cxd2880-spi: Fix an error handling path")
    Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx>
    Signed-off-by: Sean Young <sean@xxxxxxxx>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/media/spi/cxd2880-spi.c b/drivers/media/spi/cxd2880-spi.c
index 93194f03764d2..11273be702b6e 100644
--- a/drivers/media/spi/cxd2880-spi.c
+++ b/drivers/media/spi/cxd2880-spi.c
@@ -618,7 +618,7 @@ fail_frontend:
 fail_attach:
 	dvb_unregister_adapter(&dvb_spi->adapter);
 fail_adapter:
-	if (!dvb_spi->vcc_supply)
+	if (dvb_spi->vcc_supply)
 		regulator_disable(dvb_spi->vcc_supply);
 fail_regulator:
 	kfree(dvb_spi);



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux