Patch "ASoC: soc-pcm: fix the return value in dpcm_apply_symmetry()" has been added to the 5.13-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: soc-pcm: fix the return value in dpcm_apply_symmetry()

to the 5.13-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-soc-pcm-fix-the-return-value-in-dpcm_apply_symm.patch
and it can be found in the queue-5.13 subdirectory.

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



commit 7a4cff3afc20a4ed76d33e7aff1fc990ea88a8e4
Author: Jaroslav Kysela <perex@xxxxxxxx>
Date:   Mon Jun 14 09:17:46 2021 +0200

    ASoC: soc-pcm: fix the return value in dpcm_apply_symmetry()
    
    [ Upstream commit 12ffd726824a2f52486f72338b6fd3244b512959 ]
    
    In case, where the loops are not executed for a reason, the uninitialized
    variable 'err' is returned to the caller. Make code fully predictible
    and assign zero in the declaration.
    
    Signed-off-by: Jaroslav Kysela <perex@xxxxxxxx>
    Cc: Mark Brown <broonie@xxxxxxxxxx>
    Cc: Kuninori Morimoto <kuninori.morimoto.gx@xxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20210614071746.1787072-1-perex@xxxxxxxx
    Signed-off-by: Mark Brown <broonie@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
index 8659089a87a0..46513bb97904 100644
--- a/sound/soc/soc-pcm.c
+++ b/sound/soc/soc-pcm.c
@@ -1700,7 +1700,7 @@ static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
 	struct snd_soc_dpcm *dpcm;
 	struct snd_soc_pcm_runtime *fe = asoc_substream_to_rtd(fe_substream);
 	struct snd_soc_dai *fe_cpu_dai;
-	int err;
+	int err = 0;
 	int i;
 
 	/* apply symmetry for FE */



[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