commit | 3a9401ae90d2a16c7a06328d397775ca5b46ffc0 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@swtch.com> | Wed Jan 30 13:47:07 2008 -0500 |
committer | Russ Cox <rsc@swtch.com> | Wed Jan 30 13:47:07 2008 -0500 |
tree | cb74aa0e91032a566a1b33a92264e2b0faf0e228 | |
parent | 0f897f99ef576ae80a1e2d7cee29c498e3449b36 [diff] |
sam: fix regexp match choice bug
diff --git a/src/cmd/sam/regexp.c b/src/cmd/sam/regexp.c index 8beaa03..3477bae 100644 --- a/src/cmd/sam/regexp.c +++ b/src/cmd/sam/regexp.c
@@ -772,7 +772,7 @@ break; case OR: /* evaluate right choice later */ - if(addinst(tl, inst->right, &tlp->se)) + if(addinst(tlp, inst->right, &tlp->se)) if(++ntl >= NLIST) goto Overflow; /* efficiency: advance and re-evaluate */