From: Brian Paul Date: Wed, 7 Jan 2009 19:31:14 +0000 (-0700) Subject: mesa: fix off-by-one bug in _mesa_delete_instructions() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5273a5f0d7b433150cdb16737bb295d76d0594a0;p=mesa.git mesa: fix off-by-one bug in _mesa_delete_instructions() --- diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c index 37962f0e9bb..7a3b827352a 100644 --- a/src/mesa/shader/program.c +++ b/src/mesa/shader/program.c @@ -570,7 +570,7 @@ _mesa_delete_instructions(struct gl_program *prog, GLuint start, GLuint count) for (i = 0; i < prog->NumInstructions; i++) { struct prog_instruction *inst = prog->Instructions + i; if (inst->BranchTarget > 0) { - if (inst->BranchTarget >= start) { + if (inst->BranchTarget > start) { inst->BranchTarget -= count; } }