diff options
| author | Heinrich Schuchardt <[email protected]> | 2020-04-28 21:40:13 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-05-01 11:34:01 -0400 |
| commit | b142d0ac1946701f4d592869c2d81e42afe2e294 (patch) | |
| tree | a14d992d100d75da51a7b7b3bcff2b58f485ac2e /cmd | |
| parent | ea5d3731b843b14f1c48d0d0f2c7d2877ecbf673 (diff) | |
cmd/gpt: avoid NULL check before free()
free() checks if its argument is NULL. Do not duplicate this in the calling
code.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/gpt.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cmd/gpt.c b/cmd/gpt.c index b94f0051cdd..b8d11c167df 100644 --- a/cmd/gpt.c +++ b/cmd/gpt.c @@ -772,11 +772,9 @@ static int do_rename_gpt_parts(struct blk_desc *dev_desc, char *subcomm, out: del_gpt_info(); #ifdef CONFIG_RANDOM_UUID - if (str_disk_guid) - free(str_disk_guid); + free(str_disk_guid); #endif - if (new_partitions) - free(new_partitions); + free(new_partitions); free(partitions_list); return ret; } |
