diff --git a/lib/mesa/src/mesa/main/dlist.c b/lib/mesa/src/mesa/main/dlist.c index 63feef2b..8c32ed80 100644 --- a/lib/mesa/src/mesa/main/dlist.c +++ b/lib/mesa/src/mesa/main/dlist.c @@ -1220,7 +1220,7 @@ dlist_alloc(struct gl_context *ctx, OpCode opcode, GLuint bytes, bool align8) ctx->ListState.CurrentPos++; } - if (ctx->ListState.CurrentPos + numNodes + contNodes > BLOCK_SIZE) { + if (ctx->ListState.CurrentPos + numNodes + contNodes >= BLOCK_SIZE) { /* This block is full. Allocate a new block and chain to it */ Node *newblock; Node *n = ctx->ListState.CurrentBlock + ctx->ListState.CurrentPos;