1
0
Fork 0

gpt: fix error reporting on partition table write failures

The gpt command always reports success even if writing the partition table
failed. Propagate the return value of gpt_restore so we get proper status
reported.

Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Przemyslaw Marczak <p.marczak@samsung.com>
utp
Rob Herring 2015-01-26 09:43:15 -06:00 committed by Tom Rini
parent 694cc87b76
commit a150e6c9df
1 changed files with 2 additions and 2 deletions

View File

@ -281,11 +281,11 @@ static int gpt_default(block_dev_desc_t *blk_dev_desc, const char *str_part)
}
/* save partitions layout to disk */
gpt_restore(blk_dev_desc, str_disk_guid, partitions, part_count);
ret = gpt_restore(blk_dev_desc, str_disk_guid, partitions, part_count);
free(str_disk_guid);
free(partitions);
return 0;
return ret;
}
/**