added null ptr check in draw_destroy() for rasterizer stage

This commit is contained in:
Brian 2007-12-09 20:45:20 -07:00
parent f8f9580a2a
commit 04e88f469c

View file

@ -102,7 +102,8 @@ void draw_destroy( struct draw_context *draw )
draw->pipeline.cull->destroy( draw->pipeline.cull );
draw->pipeline.feedback->destroy( draw->pipeline.feedback );
draw->pipeline.validate->destroy( draw->pipeline.validate );
draw->pipeline.rasterize->destroy( draw->pipeline.rasterize );
if (draw->pipeline.rasterize)
draw->pipeline.rasterize->destroy( draw->pipeline.rasterize );
FREE( draw->vcache.vertex[0] ); /* Frees all the vertices. */
FREE( draw );
}