public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* NFS thinko
@ 2004-04-16 21:16 Dave Jones
  2004-04-16 21:32 ` Russell King
  2004-04-16 22:09 ` J. Bruce Fields
  0 siblings, 2 replies; 3+ messages in thread
From: Dave Jones @ 2004-04-16 21:16 UTC (permalink / raw)
  To: trond.myklebust; +Cc: Linux Kernel

Dereferencing 'exp' before the check for NULL.

		Dave


--- linux-2.6.5/include/linux/nfsd/export.h~	2004-04-16 22:13:28.000000000 +0100
+++ linux-2.6.5/include/linux/nfsd/export.h	2004-04-16 22:14:21.000000000 +0100
@@ -118,13 +118,15 @@
 	if (ek && !IS_ERR(ek)) {
 		struct svc_export *exp = ek->ek_export;
 		int err;
+		if (!exp)
+			goto out;
 		cache_get(&exp->h);
 		expkey_put(&ek->h, &svc_expkey_cache);
-		if (exp &&
-		    (err = cache_check(&svc_export_cache, &exp->h, reqp)))
+		if (err = cache_check(&svc_export_cache, &exp->h, reqp))
 			exp = ERR_PTR(err);
 		return exp;
 	} else
+out:
 		return ERR_PTR(PTR_ERR(ek));
 }
 

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

end of thread, other threads:[~2004-04-16 22:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-16 21:16 NFS thinko Dave Jones
2004-04-16 21:32 ` Russell King
2004-04-16 22:09 ` J. Bruce Fields

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox