From e52e8326d9131670880d4b6fa285d49c7e1d7fee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolai=20H=C3=A4hnle?= Date: Tue, 14 Nov 2017 09:37:38 +0100 Subject: [PATCH] radeonsi: check that we don't leak fine.buf references MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just as an added precaution. Reviewed-by: Marek Olšák --- src/gallium/drivers/radeonsi/si_fence.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/radeonsi/si_fence.c b/src/gallium/drivers/radeonsi/si_fence.c index b835ed649ee..61105217caa 100644 --- a/src/gallium/drivers/radeonsi/si_fence.c +++ b/src/gallium/drivers/radeonsi/si_fence.c @@ -445,12 +445,14 @@ static void si_flush_from_st(struct pipe_context *ctx, } multi_fence->fine = fine; + fine.buf = NULL; if (flags & TC_FLUSH_ASYNC) { util_queue_fence_signal(&multi_fence->ready); tc_unflushed_batch_token_reference(&multi_fence->tc_token, NULL); } } + assert(!fine.buf); finish: if (!(flags & PIPE_FLUSH_DEFERRED)) { if (rctx->dma.cs)