From: Nicolai Hähnle Date: Tue, 14 Nov 2017 08:37:38 +0000 (+0100) Subject: radeonsi: check that we don't leak fine.buf references X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e52e8326d9131670880d4b6fa285d49c7e1d7fee;p=mesa.git radeonsi: check that we don't leak fine.buf references Just as an added precaution. Reviewed-by: Marek Olšák --- 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)