From dc0347cc9b3ea74da062c553dbcdc541c030f114 Mon Sep 17 00:00:00 2001 From: Grzegorz Kostka Date: Thu, 5 Apr 2018 10:54:24 +0200 Subject: [PATCH] ext4: move ext4_fs_alloc_inode result check to right place --- src/ext4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ext4.c b/src/ext4.c index a6d3e237..ab7b61f9 100644 --- a/src/ext4.c +++ b/src/ext4.c @@ -994,10 +994,10 @@ static int ext4_generic_open2(ext4_file *f, const char *path, int flags, r = ext4_fs_alloc_inode(fs, &child_ref, is_goal ? ftype : EXT4_DE_DIR); - ext4_fs_inode_blocks_init(fs, &child_ref); if (r != EOK) break; + ext4_fs_inode_blocks_init(fs, &child_ref); /*Link with root dir.*/ r = ext4_link(mp, &ref, &child_ref, path, len, false);