Whamcloud - gitweb
- uninitialized error code
authorbraam <braam>
Mon, 25 Feb 2002 18:57:03 +0000 (18:57 +0000)
committerbraam <braam>
Mon, 25 Feb 2002 18:57:03 +0000 (18:57 +0000)
- uninitialized mode of data objects
both fixed

lustre/llite/namei.c

index 4f07f3c..f95a8ac 100644 (file)
@@ -280,6 +280,9 @@ static int ll_create (struct inode * dir, struct dentry * dentry, int mode)
        struct obdo oa;
        struct inode * inode;
 
+       memset(&oa, 0, sizeof(oa)); 
+       oa.o_valid = OBD_MD_FLMODE; 
+       oa.o_mode = S_IFREG | 0600;
        err = obd_create(IID(dir), &oa);  
        if (err) { 
                EXIT;