aboutsummaryrefslogtreecommitdiff
path: root/hw/ssi/pnv_spi.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2024-08-07 22:28:02 +0200
committerNicholas Piggin <npiggin@gmail.com>2024-11-04 09:09:09 +1000
commit65f53702d2e4bd045ce16ca874469cdd1e1ef4e4 (patch)
treef5e28f80e4be3b91d7440f7d41da9e504dc81e18 /hw/ssi/pnv_spi.c
parent3cde4c31ebe9fdfeca2d824a0036d04bec285301 (diff)
hw/ssi/pnv_spi: Match _xfer_buffer_free() with _xfer_buffer_new()
pnv_spi_xfer_buffer_new() allocates %payload using g_malloc0(), and pnv_spi_xfer_buffer_write_ptr() allocates %payload->data using g_realloc(). Use the API equivalent g_free() to release the buffers. Cc: qemu-stable@nongnu.org Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Diffstat (limited to 'hw/ssi/pnv_spi.c')
-rw-r--r--hw/ssi/pnv_spi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/ssi/pnv_spi.c b/hw/ssi/pnv_spi.c
index 9e7207bf7c..d15a5970b4 100644
--- a/hw/ssi/pnv_spi.c
+++ b/hw/ssi/pnv_spi.c
@@ -53,8 +53,8 @@ static PnvXferBuffer *pnv_spi_xfer_buffer_new(void)
static void pnv_spi_xfer_buffer_free(PnvXferBuffer *payload)
{
- free(payload->data);
- free(payload);
+ g_free(payload->data);
+ g_free(payload);
}
static uint8_t *pnv_spi_xfer_buffer_write_ptr(PnvXferBuffer *payload,