From: Vinson Lee Date: Fri, 1 Feb 2013 07:32:41 +0000 (-0800) Subject: nvc0: Fix memory leak. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0580f165edee989492e6c6df5f66bffb3233729f;p=mesa.git nvc0: Fix memory leak. Fixes resource leak defect reported by Coverity. Signed-off-by: Vinson Lee Reviewed-by: Brian Paul --- diff --git a/src/gallium/drivers/nvc0/nvc0_vbo.c b/src/gallium/drivers/nvc0/nvc0_vbo.c index 61a6341b852..3ae437a0778 100644 --- a/src/gallium/drivers/nvc0/nvc0_vbo.c +++ b/src/gallium/drivers/nvc0/nvc0_vbo.c @@ -89,6 +89,7 @@ nvc0_vertex_state_create(struct pipe_context *pipe, case 4: fmt = PIPE_FORMAT_R32G32B32A32_FLOAT; break; default: assert(0); + FREE(so); return NULL; } so->element[i].state = nvc0_format_table[fmt].vtx;