st/mesa: Fix memory leak on out-of-memory error path.
authorVinson Lee <vlee@vmware.com>
Sun, 21 Feb 2010 23:10:50 +0000 (15:10 -0800)
committerVinson Lee <vlee@vmware.com>
Sun, 21 Feb 2010 23:10:50 +0000 (15:10 -0800)
src/mesa/state_tracker/st_program.c

index 7ce3938..7f8677d 100644 (file)
@@ -205,8 +205,10 @@ st_translate_vertex_program(struct st_context *st,
    unsigned num_outputs;
 
    ureg = ureg_create( TGSI_PROCESSOR_VERTEX );
-   if (ureg == NULL)
+   if (ureg == NULL) {
+      FREE(vpv);
       return NULL;
+   }
 
    vpv->num_inputs = stvp->num_inputs;
    num_outputs = stvp->num_outputs;