draw llvm: Move dereference of pointer after NULL check.

This commit is contained in:
Vinson Lee 2010-04-20 00:00:52 -07:00
parent 11913e9798
commit 49ba607aba

View file

@ -103,12 +103,14 @@ boolean draw_init(struct draw_context *draw)
void draw_destroy( struct draw_context *draw )
{
struct pipe_context *pipe = draw->pipe;
struct pipe_context *pipe;
int i, j;
if (!draw)
return;
pipe = draw->pipe;
/* free any rasterizer CSOs that we may have created.
*/
for (i = 0; i < 2; i++) {