# HG changeset patch # User michael # Date 1230310750 0 # Node ID ff23c1a249b23c93f587222b8149744d87f8a37a # Parent f456c3aebe1c0f2c91b173af3cc08840e5aa11a3 Get rid of check for condition that is always true (run_off < avctx->width). diff -r f456c3aebe1c -r ff23c1a249b2 faxcompr.c --- a/faxcompr.c Fri Dec 26 16:57:35 2008 +0000 +++ b/faxcompr.c Fri Dec 26 16:59:10 2008 +0000 @@ -171,7 +171,7 @@ return -1; } //sync line pointers - if(runs != run_start)while(run_off <= offs && run_off < avctx->width){ + if(runs != run_start)while(run_off <= offs){ run_off += *ref++; run_off += *ref++; }