All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch] move dereference after null check
@ 2009-11-16  9:06 Dan Carpenter
  2009-11-16 10:36 ` Liam Girdwood
  2009-11-16 16:11 ` Mark Brown
  0 siblings, 2 replies; 7+ messages in thread
From: Dan Carpenter @ 2009-11-16  9:06 UTC (permalink / raw)
  To: alsa-devel; +Cc: broonie, lrg

The 'jack' variable was dereference before the NULL check so this patch 
moves the dereference later.

regards,
dan carpenter

Signed-off-by: Dan Carpenter <error27@gmail.com>

--- orig/sound/soc/soc-jack.c	2009-11-14 11:04:04.000000000 +0200
+++ devel/sound/soc/soc-jack.c	2009-11-14 11:05:01.000000000 +0200
@@ -58,7 +58,7 @@
  */
 void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
 {
-	struct snd_soc_codec *codec = jack->card->codec;
+	struct snd_soc_codec *codec;
 	struct snd_soc_jack_pin *pin;
 	int enable;
 	int oldstatus;
@@ -67,6 +67,7 @@
 		WARN_ON_ONCE(!jack);
 		return;
 	}
+	codec = jack->card->codec;
 
 	mutex_lock(&codec->mutex);

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [patch] move dereference after null check
@ 2009-11-10  8:55 Dan Carpenter
  2009-11-10 14:19 ` James Bottomley
  0 siblings, 1 reply; 7+ messages in thread
From: Dan Carpenter @ 2009-11-10  8:55 UTC (permalink / raw)
  To: linux-ide; +Cc: davem

I moved the ops->inherits dereference below the null check.  I moved the 
other assignment as well so that they would be together.

Found by smatch static checker.

regards,
dan carpenter

Signed-off-by: Dan Carpenter <error27@gmail.com>

--- orig/drivers/ata/libata-core.c	2009-11-08 19:40:18.000000000 +0200
+++ devel/drivers/ata/libata-core.c	2009-11-08 19:42:06.000000000 +0200
@@ -5938,13 +5938,14 @@
 {
 	static DEFINE_SPINLOCK(lock);
 	const struct ata_port_operations *cur;
-	void **begin = (void **)ops;
-	void **end = (void **)&ops->inherits;
-	void **pp;
+	void **begin, **end, **pp;
 
 	if (!ops || !ops->inherits)
 		return;
 
+	begin = (void **)ops;
+	end = (void **)&ops->inherits;
+
 	spin_lock(&lock);
 
 	for (cur = ops->inherits; cur; cur = cur->inherits) {

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-11-18  8:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-16  9:06 [patch] move dereference after null check Dan Carpenter
2009-11-16 10:36 ` Liam Girdwood
2009-11-16 16:11 ` Mark Brown
2009-11-16 16:15   ` Takashi Iwai
2009-11-18  8:45   ` Dan Carpenter
  -- strict thread matches above, loose matches on Subject: below --
2009-11-10  8:55 Dan Carpenter
2009-11-10 14:19 ` James Bottomley

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.