Commit ce812c28 authored by Anton Altaparmakov's avatar Anton Altaparmakov

NTFS: Move a few assignments after a NULL check in fs/ntfs/attrib.c.

parent 9c82a749
...@@ -1235,11 +1235,11 @@ int load_attribute_list(ntfs_volume *vol, run_list *run_list, u8 *al_start, ...@@ -1235,11 +1235,11 @@ int load_attribute_list(ntfs_volume *vol, run_list *run_list, u8 *al_start,
u8 *al_end = al + initialized_size; u8 *al_end = al + initialized_size;
run_list_element *rl; run_list_element *rl;
struct buffer_head *bh; struct buffer_head *bh;
struct super_block *sb = vol->sb; struct super_block *sb;
unsigned long block_size = sb->s_blocksize; unsigned long block_size;
unsigned long block, max_block; unsigned long block, max_block;
int err = 0; int err = 0;
unsigned char block_size_bits = sb->s_blocksize_bits; unsigned char block_size_bits;
ntfs_debug("Entering."); ntfs_debug("Entering.");
if (!vol || !run_list || !al || size <= 0 || initialized_size < 0 || if (!vol || !run_list || !al || size <= 0 || initialized_size < 0 ||
...@@ -1249,6 +1249,9 @@ int load_attribute_list(ntfs_volume *vol, run_list *run_list, u8 *al_start, ...@@ -1249,6 +1249,9 @@ int load_attribute_list(ntfs_volume *vol, run_list *run_list, u8 *al_start,
memset(al, 0, size); memset(al, 0, size);
return 0; return 0;
} }
sb = vol->sb;
block_size = sb->s_blocksize;
block_size_bits = sb->s_blocksize_bits;
down_read(&run_list->lock); down_read(&run_list->lock);
rl = run_list->rl; rl = run_list->rl;
/* Read all clusters specified by the run list one run at a time. */ /* Read all clusters specified by the run list one run at a time. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment