* [PATCH] ASoC at91 - Fix NULL pointer dereference in at91_i2s_shutdown
@ 2006-12-29 18:52 Frank Mandarino
2007-01-08 11:17 ` Takashi Iwai
0 siblings, 1 reply; 2+ messages in thread
From: Frank Mandarino @ 2006-12-29 18:52 UTC (permalink / raw)
To: alsa-devel
[-- Attachment #1: Type: text/plain, Size: 356 bytes --]
This patch fixes a NULL pointer exception which occurs when a
substream is opened and immediately closed.
Signed-off-by: Frank Mandarino <fmandarino@endrelia.com>
Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com>
--
Frank Mandarino fmandarino(a)endrelia.com
Endrelia Technologies Inc.
Toronto, Ontario, Canada
[-- Attachment #2: asoc-at91-i2s-nullptr.patch --]
[-- Type: text/plain, Size: 1305 bytes --]
# HG changeset patch
# User fam@procyon
# Date 1167417628 18000
# Node ID db7345e709ceb94df2cce3ea8ea7d32cc83d789e
# Parent 4eae1a19406e9e14c38efdef7fb1bd603200485d
ASoC at91 - Fix NULL pointer dereference in at91_i2s_shutdown
at91_i2s_shutdown() depends on the snd_soc_cpu_dai dma_data field
being NULL if the substream's DMA parameters were not set up.
However, if a substream was started, then shutdown before the DMA
parameters were setup, the dma_data field would still contain the
value that was set for a previous substream, which pointed to an
invalid at91_pcm_dma_params structure.
The fix is to initialize the dma_data field to NULL when the
substream is started.
Signed-off-by: Frank Mandarino <fmandarino@endrelia.com>
Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com>
diff -r 4eae1a19406e -r db7345e709ce soc/at91/at91-i2s.c
--- a/soc/at91/at91-i2s.c Thu Dec 28 13:56:48 2006 +0100
+++ b/soc/at91/at91-i2s.c Fri Dec 29 13:40:28 2006 -0500
@@ -295,6 +295,13 @@ static int at91_i2s_startup(struct snd_p
}
ssc_p->dir_mask |= dir_mask;
spin_unlock_irq(&ssc_p->lock);
+
+ /*
+ * dma_data is not set until hw_params() is called and
+ * shutdown() depends on this value being NULL if hw_params()
+ * was not called.
+ */
+ rtd->cpu_dai->dma_data = NULL;
return 0;
}
[-- Attachment #3: Type: text/plain, Size: 347 bytes --]
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
[-- Attachment #4: Type: text/plain, Size: 161 bytes --]
_______________________________________________
Alsa-devel mailing list
Alsa-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/alsa-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ASoC at91 - Fix NULL pointer dereference in at91_i2s_shutdown
2006-12-29 18:52 [PATCH] ASoC at91 - Fix NULL pointer dereference in at91_i2s_shutdown Frank Mandarino
@ 2007-01-08 11:17 ` Takashi Iwai
0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2007-01-08 11:17 UTC (permalink / raw)
To: Frank Mandarino; +Cc: alsa-devel
At Fri, 29 Dec 2006 13:52:27 -0500,
Frank Mandarino wrote:
>
> This patch fixes a NULL pointer exception which occurs when a
> substream is opened and immediately closed.
>
> Signed-off-by: Frank Mandarino <fmandarino@endrelia.com>
> Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com>
Applied to ALSA HG tree. Thanks.
Takashi
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-01-08 11:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-29 18:52 [PATCH] ASoC at91 - Fix NULL pointer dereference in at91_i2s_shutdown Frank Mandarino
2007-01-08 11:17 ` Takashi Iwai
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.