[patch 1/5] fuse: fuse_file_alloc(): fix NULL dereferences

From: Miklos Szeredi
Date: Wed Oct 24 2007 - 07:14:47 EST


From: Adrian Bunk <bunk@xxxxxxxxxx>

This patch fixes obvious NULL dereferences spotted by the Coverity
checker.

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxxx>
Signed-off-by: Miklos Szeredi <mszeredi@xxxxxxx>
---

Index: linux/fs/fuse/file.c
===================================================================
--- linux.orig/fs/fuse/file.c 2007-10-19 16:45:09.000000000 +0200
+++ linux/fs/fuse/file.c 2007-10-19 16:45:22.000000000 +0200
@@ -55,9 +55,10 @@ struct fuse_file *fuse_file_alloc(void)
if (!ff->reserved_req) {
kfree(ff);
ff = NULL;
+ } else {
+ INIT_LIST_HEAD(&ff->write_entry);
+ atomic_set(&ff->count, 0);
}
- INIT_LIST_HEAD(&ff->write_entry);
- atomic_set(&ff->count, 0);
}
return ff;
}

--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/