From fc454954742e98213397a97033ab4f5b927e98d9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Fri, 1 Sep 2017 23:26:59 +0200 Subject: [PATCH] gallium/radeon: add a proper fail path for calloc in r600_flush_from_st MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Nicolai Hähnle --- src/gallium/drivers/radeon/r600_pipe_common.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/radeon/r600_pipe_common.c b/src/gallium/drivers/radeon/r600_pipe_common.c index a5678fa..b17bf80b 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.c +++ b/src/gallium/drivers/radeon/r600_pipe_common.c @@ -453,8 +453,11 @@ static void r600_flush_from_st(struct pipe_context *ctx, if (fence) { struct r600_multi_fence *multi_fence = CALLOC_STRUCT(r600_multi_fence); - if (!multi_fence) - return; + if (!multi_fence) { + ws->fence_reference(&sdma_fence, NULL); + ws->fence_reference(&gfx_fence, NULL); + goto finish; + } multi_fence->reference.count = 1; /* If both fences are NULL, fence_finish will always return true. */ @@ -469,7 +472,7 @@ static void r600_flush_from_st(struct pipe_context *ctx, screen->fence_reference(screen, fence, NULL); *fence = (struct pipe_fence_handle*)multi_fence; } - +finish: if (!(flags & PIPE_FLUSH_DEFERRED)) { if (rctx->dma.cs) ws->cs_sync_flush(rctx->dma.cs); -- 2.7.4