From: Eric Anholt Date: Fri, 7 Dec 2018 18:34:40 +0000 (-0800) Subject: v3d: Fix a leak of the disassembled instruction string during debug dumps. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f1d98204c34d36876e05e1d3f2242296ccec19e3;p=mesa.git v3d: Fix a leak of the disassembled instruction string during debug dumps. Fixes: ade416d02369 ("broadcom: Add VC5 NIR compiler.") --- diff --git a/src/broadcom/compiler/vir_to_qpu.c b/src/broadcom/compiler/vir_to_qpu.c index b5a7b841ef6..4baadce294c 100644 --- a/src/broadcom/compiler/vir_to_qpu.c +++ b/src/broadcom/compiler/vir_to_qpu.c @@ -364,6 +364,7 @@ v3d_dump_qpu(struct v3d_compile *c) for (int i = 0; i < c->qpu_inst_count; i++) { const char *str = v3d_qpu_disasm(c->devinfo, c->qpu_insts[i]); fprintf(stderr, "0x%016"PRIx64" %s\n", c->qpu_insts[i], str); + ralloc_free((void *)str); } fprintf(stderr, "\n"); }