From 1f27bd3f2be06ff6e5d795dd115fb94144971785 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 4 Apr 2019 12:36:08 +0200 Subject: [PATCH] virgl: return error if allocating resolve_tmp fails Signed-off-by: Erik Faye-Lund Reviewed-by: Gurchetan Singh --- src/gallium/drivers/virgl/virgl_texture.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gallium/drivers/virgl/virgl_texture.c b/src/gallium/drivers/virgl/virgl_texture.c index d520625..398d2ef 100644 --- a/src/gallium/drivers/virgl/virgl_texture.c +++ b/src/gallium/drivers/virgl/virgl_texture.c @@ -135,6 +135,10 @@ static void *virgl_texture_transfer_map(struct pipe_context *ctx, virgl_init_temp_resource_from_box(&templ, resource, box, level, 0); trans->resolve_tmp = (struct virgl_resource *)ctx->screen->resource_create(ctx->screen, &templ); + if (!trans->resolve_tmp) { + virgl_resource_destroy_transfer(&vctx->transfer_pool, trans); + return NULL; + } virgl_copy_region_with_blit(ctx, &trans->resolve_tmp->u.b, 0, 0, 0, 0, resource, level, box); ctx->flush(ctx, NULL, 0); -- 2.7.4