diff options
-rw-r--r-- | src/mesa/drivers/dri/common/texmem.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/common/texmem.c b/src/mesa/drivers/dri/common/texmem.c index 48a8f5c74e9..bc12021411e 100644 --- a/src/mesa/drivers/dri/common/texmem.c +++ b/src/mesa/drivers/dri/common/texmem.c @@ -530,6 +530,10 @@ driAllocateTexture( driTexHeap * const * heap_array, unsigned nr_heaps, if ( t->memBlock == NULL ) { for ( id = 0 ; (t->memBlock == NULL) && (id < nr_heaps) ; id++ ) { heap = heap_array[ id ]; + + if ( heap == NULL ) + continue; + if ( t->totalSize <= heap->size ) { for ( cursor = heap->texture_objects.prev, temp = cursor->prev; |