]> git.dujemihanovic.xyz Git - u-boot.git/commit
clk: scmi: fix scmi_clk_get_attibute()
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Tue, 26 Apr 2022 21:26:31 +0000 (23:26 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 5 May 2022 23:37:11 +0000 (19:37 -0400)
commitd6577668196a130787291682ff9202721396ec1b
tree5f63753162db219885f33678ebba60a720f36445
parent616571804a01f032bc43fa4fdeb42f00cb90513c
clk: scmi: fix scmi_clk_get_attibute()

Local variable out.name lives on the stack and therefore cannot
be returned directly. Move the strdup() call into the function.
(Coverity 352460)

Fixes: 7c33f78983c3 ("clk: scmi: register scmi clocks with CCF")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Sean Anderson <seanga2@gmail.com>
drivers/clk/clk_scmi.c