Browse Source

dm table: remove superfluous variable reset

If allocation fails, the local var *t is not used any more after kfree.
Don't need to reset it to NULL. Remove the unnecesary NULL set here.

Signed-off-by: Wang Sheng-Hui <shhuiw@gmail.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Wang Sheng-Hui 12 years ago
parent
commit
d2ce70a119
1 changed files with 0 additions and 1 deletions
  1. 0 1
      drivers/md/dm-table.c

+ 0 - 1
drivers/md/dm-table.c

@@ -217,7 +217,6 @@ int dm_table_create(struct dm_table **result, fmode_t mode,
 
 	if (alloc_targets(t, num_targets)) {
 		kfree(t);
-		t = NULL;
 		return -ENOMEM;
 	}