softpipe: Check for NULL pointer in sp_destroy_tile_cache().
This commit is contained in:
@@ -115,16 +115,18 @@ sp_create_tile_cache( struct pipe_context *pipe )
|
|||||||
void
|
void
|
||||||
sp_destroy_tile_cache(struct softpipe_tile_cache *tc)
|
sp_destroy_tile_cache(struct softpipe_tile_cache *tc)
|
||||||
{
|
{
|
||||||
uint pos;
|
if (tc) {
|
||||||
|
uint pos;
|
||||||
|
|
||||||
for (pos = 0; pos < NUM_ENTRIES; pos++) {
|
for (pos = 0; pos < NUM_ENTRIES; pos++) {
|
||||||
/*assert(tc->entries[pos].x < 0);*/
|
/*assert(tc->entries[pos].x < 0);*/
|
||||||
}
|
}
|
||||||
if (tc->transfer) {
|
if (tc->transfer) {
|
||||||
tc->pipe->transfer_destroy(tc->pipe, tc->transfer);
|
tc->pipe->transfer_destroy(tc->pipe, tc->transfer);
|
||||||
}
|
}
|
||||||
|
|
||||||
FREE( tc );
|
FREE( tc );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user