From: openocd-gerrit <ope...@us...> - 2024-06-08 08:51:19
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 1fba55a9b62118ac102c161bb8efcd2ceed379a1 (commit) from 0a3217b8ff34043e6c59850e5d7667edf97ec447 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1fba55a9b62118ac102c161bb8efcd2ceed379a1 Author: Marc Schink <de...@za...> Date: Sat Jun 1 10:41:29 2024 +0200 flash/nor/tcl: Fix memory leak of flash bank name Change-Id: I54cd1ee479a0570ae849a71be47c82eebd1ae454 Signed-off-by: Marc Schink <de...@za...> Reviewed-on: https://review.openocd.org/c/openocd/+/8303 Reviewed-by: Antonio Borneo <bor...@gm...> Tested-by: jenkins diff --git a/src/flash/nor/tcl.c b/src/flash/nor/tcl.c index 720fb60a1..6ac932be7 100644 --- a/src/flash/nor/tcl.c +++ b/src/flash/nor/tcl.c @@ -1298,6 +1298,7 @@ COMMAND_HANDLER(handle_flash_bank_command) if (retval != ERROR_OK) { LOG_ERROR("'%s' driver rejected flash bank at " TARGET_ADDR_FMT "; usage: %s", driver_name, c->base, driver->usage); + free(c->name); free(c); return retval; } ----------------------------------------------------------------------- Summary of changes: src/flash/nor/tcl.c | 1 + 1 file changed, 1 insertion(+) hooks/post-receive -- Main OpenOCD repository |