mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 05:34:13 +08:00
[PATCH] udf: remove bogus inode == NULL check in inode_bmap
inode can never be NULL when calling this function. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
6b9c7ed848
commit
b8b0af2435
@ -1957,11 +1957,6 @@ int8_t inode_bmap(struct inode *inode, int block, kernel_lb_addr *bloc, uint32_t
|
||||
printk(KERN_ERR "udf: inode_bmap: block < 0\n");
|
||||
return -1;
|
||||
}
|
||||
if (!inode)
|
||||
{
|
||||
printk(KERN_ERR "udf: inode_bmap: NULL inode\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
*extoffset = 0;
|
||||
*elen = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user