Patch "ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp()" has been added to the 5.17-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

    ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp()

to the 5.17-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:
     asoc-rt5663-check-the-return-value-of-devm_kzalloc-i.patch
and it can be found in the queue-5.17 subdirectory.

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



commit 77366455d587674f3eba5cb357f8ac2eaca415e2
Author: Jia-Ju Bai <baijiaju1990@xxxxxxxxx>
Date:   Fri Feb 25 05:10:30 2022 -0800

    ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp()
    
    [ Upstream commit 4d06f92f38b799295ae22c98be7a20cac3e2a1a7 ]
    
    The function devm_kzalloc() in rt5663_parse_dp() can fail, so its return
    value should be checked.
    
    Fixes: 457c25efc592 ("ASoC: rt5663: Add the function of impedance sensing")
    Reported-by: TOTE Robot <oslab@xxxxxxxxxxxxxxx>
    Signed-off-by: Jia-Ju Bai <baijiaju1990@xxxxxxxxx>
    Link: https://lore.kernel.org/r/20220225131030.27248-1-baijiaju1990@xxxxxxxxx
    Signed-off-by: Mark Brown <broonie@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/sound/soc/codecs/rt5663.c b/sound/soc/codecs/rt5663.c
index 2138f62e6af5..3a8fba101b20 100644
--- a/sound/soc/codecs/rt5663.c
+++ b/sound/soc/codecs/rt5663.c
@@ -3478,6 +3478,8 @@ static int rt5663_parse_dp(struct rt5663_priv *rt5663, struct device *dev)
 		table_size = sizeof(struct impedance_mapping_table) *
 			rt5663->pdata.impedance_sensing_num;
 		rt5663->imp_table = devm_kzalloc(dev, table_size, GFP_KERNEL);
+		if (!rt5663->imp_table)
+			return -ENOMEM;
 		ret = device_property_read_u32_array(dev,
 			"realtek,impedance_sensing_table",
 			(u32 *)rt5663->imp_table, table_size);



[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