Jacob Garber has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/34644 )
Change subject: util/cbfstool: Remove unused assignment ......................................................................
util/cbfstool: Remove unused assignment
This variable is overwritten on one branch of the next if statement, and the other branch returns, so this assignment does nothing.
Change-Id: I63737929d47c882bbcf637182bc8bf73c19daa9f Signed-off-by: Jacob Garber jgarber1@ualberta.ca Found-by: scan-build 8.0.0 --- M util/cbfstool/ifittool.c 1 file changed, 0 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/44/34644/1
diff --git a/util/cbfstool/ifittool.c b/util/cbfstool/ifittool.c index 3b16c3f..dce37c8 100644 --- a/util/cbfstool/ifittool.c +++ b/util/cbfstool/ifittool.c @@ -336,7 +336,6 @@ case ADD_REGI_OP: { struct buffer region; - addr = 0;
if (partitioned_file_read_region(®ion, image_file, name)) { addr = -convert_to_from_top_aligned(®ion, 0);