From: Paul Fertser Date: Wed, 11 Feb 2015 08:04:15 +0000 (+0300) Subject: hla/hla_interface: call HLA layout API close() on quit X-Git-Tag: v0.9.0-rc1~86 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=889b246d939bf8572094cf4bfe56f58f44e8ff62 hla/hla_interface: call HLA layout API close() on quit This bug was exposed by Valgrind. Change-Id: I2e2bc036b49ca3ff22f78f765ee4537763350096 Signed-off-by: Paul Fertser Reviewed-on: http://openocd.zylin.com/2543 Tested-by: jenkins Reviewed-by: Spencer Oliver --- diff --git a/src/jtag/hla/hla_interface.c b/src/jtag/hla/hla_interface.c index 21cd06fa73..85f083cecd 100644 --- a/src/jtag/hla/hla_interface.c +++ b/src/jtag/hla/hla_interface.c @@ -124,6 +124,9 @@ static int hl_interface_quit(void) } hl_if.param.trace_source_hz = 0; + if (hl_if.layout->api->close) + hl_if.layout->api->close(hl_if.handle); + return ERROR_OK; }