Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/40652 )
Change subject: stlinkv3_spi: Fix memory leak ......................................................................
stlinkv3_spi: Fix memory leak
Change-Id: Ic650b43395c64b1677f6e114b0faf42a3b7b3759 Found-by: Coverity Scan #1415214 Signed-off-by: Patrick Georgi pgeorgi@google.com --- M stlinkv3_spi.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/52/40652/1
diff --git a/stlinkv3_spi.c b/stlinkv3_spi.c index 7338911..9e621c2 100644 --- a/stlinkv3_spi.c +++ b/stlinkv3_spi.c @@ -495,6 +495,7 @@ msg_perr("The spispeed parameter passed with invalid format: %s\n", speed_str); msg_perr("Please pass the parameter with a simple number in kHz\n"); + free(speed_str); return -1; } free(speed_str);