]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
rockchip: mkimage: remove (left-over) assignment w/o effect [coverity]
authorPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>
Wed, 19 Apr 2017 13:09:04 +0000 (15:09 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 27 Apr 2017 20:49:03 +0000 (16:49 -0400)
An assignment (of a value to itself) was left over (after removing and
addition from the line) from moving the common padding code into
rkcommon_vrec_header.

This change removes this to avoid a spurious warning in static code
analysis (i.e. Coverity).

Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reported-by: Coverity (CID: 161418)
Reviewed-by: Tom Rini <trini@konsulko.com>
tools/rkcommon.c

index 6cdb749c4ca80018898b038d870817f26c08d9f3..b34373e8fcd95e387a1c0ed00a24150997374c85 100644 (file)
@@ -227,5 +227,4 @@ void rkcommon_vrec_header(struct image_tool_params *params,
        /* Allocate, clear and install the header */
        tparams->hdr = malloc(tparams->header_size);
        memset(tparams->hdr, 0, tparams->header_size);
-       tparams->header_size = tparams->header_size;
 }