]> sigrok.org Git - sigrok-cli.git/commit
sigrok-cli.c: Fix memory leak in parsing of hardware options
authorAlexandru Gagniuc <redacted>
Thu, 20 Dec 2012 03:53:51 +0000 (21:53 -0600)
committerUwe Hermann <redacted>
Tue, 1 Jan 2013 23:28:25 +0000 (00:28 +0100)
commita2853311f3a1d9a6e43bd08efbd960f079431bc0
tree13da47276cfa0c7b05299067471a4014d74cabb4
parente54290bdb3429a30f06231976980652af3360b0c
sigrok-cli.c: Fix memory leak in parsing of hardware options

During parsing of hardware options, hash_to_hwopt() creates a GSList that is
passed to device_scan(). The list is discarded by device_scan() and never freed.
This is identified by valgrind as "definitely lost".

Call g_slist_free_full() on the list when it is no longer needed.

Signed-off-by: Alexandru Gagniuc <redacted>
sigrok-cli.c