dccp: limit sk_filter trim to payload
[cascardo/linux.git] / fs / befs / linuxvfs.c
index 71112aa..7da05b1 100644 (file)
@@ -155,7 +155,7 @@ befs_get_block(struct inode *inode, sector_t block,
 static struct dentry *
 befs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
 {
-       struct inode *inode = NULL;
+       struct inode *inode;
        struct super_block *sb = dir->i_sb;
        const befs_data_stream *ds = &BEFS_I(dir)->i_data.ds;
        befs_off_t offset;
@@ -294,10 +294,10 @@ static void init_once(void *foo)
 
 static struct inode *befs_iget(struct super_block *sb, unsigned long ino)
 {
-       struct buffer_head *bh = NULL;
-       befs_inode *raw_inode = NULL;
+       struct buffer_head *bh;
+       befs_inode *raw_inode;
        struct befs_sb_info *befs_sb = BEFS_SB(sb);
-       struct befs_inode_info *befs_ino = NULL;
+       struct befs_inode_info *befs_ino;
        struct inode *inode;
        long ret = -EIO;