draw: Remove dead code.
authorVinson Lee <vlee@vmware.com>
Sun, 21 Feb 2010 09:57:16 +0000 (01:57 -0800)
committerVinson Lee <vlee@vmware.com>
Sun, 21 Feb 2010 09:57:16 +0000 (01:57 -0800)
src/gallium/auxiliary/draw/draw_pipe_aapoint.c

index 97f3480..9f9fb43 100644 (file)
@@ -864,7 +864,7 @@ draw_install_aapoint_stage(struct draw_context *draw,
     */
    aapoint = draw_aapoint_stage( draw );
    if (aapoint == NULL)
-      goto fail;
+      return FALSE;
 
    aapoint->pipe = pipe;
 
@@ -881,10 +881,4 @@ draw_install_aapoint_stage(struct draw_context *draw,
    draw->pipeline.aapoint = &aapoint->stage;
 
    return TRUE;
-
- fail:
-   if (aapoint)
-      aapoint->stage.destroy( &aapoint->stage );
-
-   return FALSE;
 }