u32 root_size, new_root_size;
        struct ntfs_sb_info *sbi;
        int ds_root;
-       struct INDEX_ROOT *root, *a_root = NULL;
+       struct INDEX_ROOT *root, *a_root;
 
        /* Get the record this root placed in */
        root = indx_get_root(indx, ni, &attr, &mi);
        if (!root)
-               goto out;
+               return -EINVAL;
 
        /*
         * Try easy case:
 
        /* Make a copy of root attribute to restore if error */
        a_root = kmemdup(attr, asize, GFP_NOFS);
-       if (!a_root) {
-               err = -ENOMEM;
-               goto out;
-       }
+       if (!a_root)
+               return -ENOMEM;
 
        /* copy all the non-end entries from the index root to the new buffer.*/
        to_move = 0;
        for (e = e0;; e = hdr_next_de(hdr, e)) {
                if (!e) {
                        err = -EINVAL;
-                       goto out;
+                       goto out_free_root;
                }
 
                if (de_is_last(e))
                to_move += le16_to_cpu(e->size);
        }
 
-       n = NULL;
        if (!to_move) {
                re = NULL;
        } else {
                re = kmemdup(e0, to_move, GFP_NOFS);
                if (!re) {
                        err = -ENOMEM;
-                       goto out;
+                       goto out_free_root;
                }
        }
 
        if (ds_root > 0 && used + ds_root > sbi->max_bytes_per_attr) {
                /* make root external */
                err = -EOPNOTSUPP;
-               goto out;
+               goto out_free_re;
        }
 
        if (ds_root)
                /* bug? */
                ntfs_set_state(sbi, NTFS_DIRTY_ERROR);
                err = -EINVAL;
-               goto out1;
+               goto out_free_re;
        }
 
        if (err) {
                        /* bug? */
                        ntfs_set_state(sbi, NTFS_DIRTY_ERROR);
                }
-               goto out1;
+               goto out_free_re;
        }
 
        e = (struct NTFS_DE *)(root + 1);
        n = indx_new(indx, ni, new_vbn, sub_vbn);
        if (IS_ERR(n)) {
                err = PTR_ERR(n);
-               goto out1;
+               goto out_free_re;
        }
 
        hdr = &n->index->ihdr;
                put_indx_node(n);
                fnd_clear(fnd);
                err = indx_insert_entry(indx, ni, new_de, ctx, fnd);
-               goto out;
+               goto out_free_root;
        }
 
        /*
        e = hdr_insert_de(indx, hdr, new_de, NULL, ctx);
        if (!e) {
                err = -EINVAL;
-               goto out1;
+               goto out_put_n;
        }
        fnd_push(fnd, n, e);
 
 
        n = NULL;
 
-out1:
+out_put_n:
+       put_indx_node(n);
+out_free_re:
        kfree(re);
-       if (n)
-               put_indx_node(n);
-
-out:
+out_free_root:
        kfree(a_root);
        return err;
 }