VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: David Howells <dhowells@redhat.com> 2009-12-15 16:47:46 -0800 committer: Linus Torvalds <torvalds@linux-foundation.org> 2009-12-16 07:20:13 -0800 commit: ea58ceb543b45d45b257a86eaf9d60c94e8adcf2 parent: 06a7f711246b081afc21fff859f1003f1f2a0fbc
Commit Summary:
FS-Cache: Avoid maybe-used-uninitialised warning on variable
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/fscache/object-list.c b/fs/fscache/object-list.c
index e590242fa41a..3221a0c7944e 100644
--- a/fs/fscache/object-list.c
+++ b/fs/fscache/object-list.c
@@ -91,7 +91,7 @@ EXPORT_SYMBOL(fscache_object_destroy);
  */
 static struct fscache_object *fscache_objlist_lookup(loff_t *_pos)
 {
-	struct fscache_object *pobj, *obj, *minobj = NULL;
+	struct fscache_object *pobj, *obj = NULL, *minobj = NULL;
 	struct rb_node *p;
 	unsigned long pos;