draw: Fix memory leak.

This would only be hit if we got and invalid index_size.
This commit is contained in:
Vinson Lee
2009-10-27 09:13:27 -06:00
committed by Brian Paul
parent 0a47631849
commit 42732611d3
@@ -394,6 +394,7 @@ vcache_check_run( struct draw_pt_front_end *frontend,
default:
assert(0);
FREE(storage);
return;
}
}
@@ -422,6 +423,7 @@ vcache_check_run( struct draw_pt_front_end *frontend,
default:
assert(0);
FREE(storage);
return;
}
}