Commit ba2eb866 authored by Markus Elfring's avatar Markus Elfring Committed by Jan Kara

fs-udf: Adjust two checks for null pointers

MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

The script “checkpatch.pl” pointed information out like the following.

Comparison to NULL could be written !…

Thus fix affected source code places.
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
parent 65f2b263
...@@ -324,7 +324,8 @@ static void udf_sb_free_partitions(struct super_block *sb) ...@@ -324,7 +324,8 @@ static void udf_sb_free_partitions(struct super_block *sb)
{ {
struct udf_sb_info *sbi = UDF_SB(sb); struct udf_sb_info *sbi = UDF_SB(sb);
int i; int i;
if (sbi->s_partmaps == NULL)
if (!sbi->s_partmaps)
return; return;
for (i = 0; i < sbi->s_partitions; i++) for (i = 0; i < sbi->s_partitions; i++)
udf_free_partition(&sbi->s_partmaps[i]); udf_free_partition(&sbi->s_partmaps[i]);
...@@ -1071,7 +1072,7 @@ static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index) ...@@ -1071,7 +1072,7 @@ static struct udf_bitmap *udf_sb_alloc_bitmap(struct super_block *sb, u32 index)
else else
bitmap = vzalloc(size); /* TODO: get rid of vzalloc */ bitmap = vzalloc(size); /* TODO: get rid of vzalloc */
if (bitmap == NULL) if (!bitmap)
return NULL; return NULL;
bitmap->s_nr_groups = nr_groups; bitmap->s_nr_groups = nr_groups;
......
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