Patrick Georgi has uploaded this change for review.

View Change

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);

To view, visit change 40652. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: Ic650b43395c64b1677f6e114b0faf42a3b7b3759
Gerrit-Change-Number: 40652
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Georgi <pgeorgi@google.com>
Gerrit-MessageType: newchange