Re: [Mesa-dev] [PATCH] llvmpipe: fix CALLOC vs. free mismatches

2019-09-05 Thread Jose Fonseca
Reviewed-by: Jose Fonseca From: srol...@vmware.com Sent: Friday, September 6, 2019 03:13 To: Jose Fonseca ; airl...@redhat.com ; mesa-dev@lists.freedesktop.org Cc: Roland Scheidegger Subject: [PATCH] llvmpipe: fix CALLOC vs. free mismatches From: Roland Sche

Re: [Mesa-dev] [PATCH] llvmpipe: fix CALLOC vs. free mismatches

2019-09-05 Thread Dave Airlie
On Fri, 6 Sep 2019 at 12:13, wrote: > > From: Roland Scheidegger > > Should fix some issues we're seeing. And use REALLOC instead of realloc. Oops sorry Reviewed-by: Dave Airlie > --- > src/gallium/drivers/llvmpipe/lp_cs_tpool.c | 6 +++--- > src/gallium/drivers/llvmpipe/lp_state_cs.c | 3 ++-

[Mesa-dev] [PATCH] llvmpipe: fix CALLOC vs. free mismatches

2019-09-05 Thread sroland
From: Roland Scheidegger Should fix some issues we're seeing. And use REALLOC instead of realloc. --- src/gallium/drivers/llvmpipe/lp_cs_tpool.c | 6 +++--- src/gallium/drivers/llvmpipe/lp_state_cs.c | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/gallium/drivers/llvm