summaryrefslogtreecommitdiff
path: root/core/fs/ext2/ext2.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/fs/ext2/ext2.c')
-rw-r--r--core/fs/ext2/ext2.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/fs/ext2/ext2.c b/core/fs/ext2/ext2.c
index 716670c6..7988faaf 100644
--- a/core/fs/ext2/ext2.c
+++ b/core/fs/ext2/ext2.c
@@ -164,6 +164,9 @@ static struct inode *ext2_iget_by_inr(struct fs_info *fs, uint32_t inr)
struct inode *inode;
e_inode = ext2_get_inode(fs, inr);
+ if (!e_inode)
+ return NULL;
+
if (!(inode = alloc_inode(fs, inr, sizeof(struct ext2_pvt_inode))))
return NULL;
fill_inode(inode, e_inode);