awk: && -> & in "n->info && OPCLSMASK" - fixes bug 1067

This commit is contained in:
Denis Vlasenko 2006-10-07 15:16:19 +00:00
parent f7a57848c2
commit 890ac9deb2

View File

@ -1356,7 +1356,7 @@ static node *mk_splitter(char *s, tsplitter *spl)
re = &spl->re[0];
ire = &spl->re[1];
n = &spl->n;
if ((n->info && OPCLSMASK) == OC_REGEXP) {
if ((n->info & OPCLSMASK) == OC_REGEXP) {
regfree(re);
regfree(ire);
}