hw/arm/sbsa-ref: Don't leak string in sbsa_fdt_add_gic_node()
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 3 Sep 2024 16:22:18 +0000 (17:22 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 5 Sep 2024 12:12:37 +0000 (13:12 +0100)
commitc2a33809e5c119f849625132544c19a180115549
tree23fd0b626776dfb91b59ab2712e9d32e1a3e0085
parent5b836d001aa8fbf4a33d50b4edeb1c6f0985999d
hw/arm/sbsa-ref: Don't leak string in sbsa_fdt_add_gic_node()

In sbsa_fdt_add_gic_node() we g_strdup_printf() two nodename
strings, but only free one.

Since the string is actually entirely constant and we don't
make any use of printf's format-string operations, we can
drop the g_strdup_printf() use entirely.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Gavin Shan <gshan@redhat.com>
Message-id: 20240822162323.706382-1-peter.maydell@linaro.org
hw/arm/sbsa-ref.c