[Ocfs2-devel] A patch to remove compile warnings in file inode.c

Sonic Zhang sonic.zhang at intel.com
Thu Apr 1 16:35:36 CST 2004


Hi,

    This is a patch to remove compile warnings in file inode.c.

/root/projects/ocfs2/src/inode.c: In function `ocfs_find_actor':
/root/projects/ocfs2/src/inode.c:562: warning: `args' might be used 
uninitialized in this function

See the attachment.

--------------------------------------------------
--- src/inode.c.old    2004-04-01 16:27:32.683665136 +0800
+++ src/inode.c    2004-04-01 16:29:49.864810432 +0800
@@ -559,7 +559,7 @@
  */
 int ocfs_find_actor (struct inode *inode, void *opaque)
 {
-    ocfs_find_inode_args *args;
+    ocfs_find_inode_args *args = NULL;
     int ret = 0;
     __u64 fileOff;
     ocfs_file_entry *fe = NULL;

-------------- next part --------------
--- src/inode.c.old	2004-04-01 16:27:32.683665136 +0800
+++ src/inode.c	2004-04-01 16:29:49.864810432 +0800
@@ -559,7 +559,7 @@
  */
 int ocfs_find_actor (struct inode *inode, void *opaque)
 {
-	ocfs_find_inode_args *args;
+	ocfs_find_inode_args *args = NULL;
 	int ret = 0;
 	__u64 fileOff;
 	ocfs_file_entry *fe = NULL;


More information about the Ocfs2-devel mailing list