From: Denis Vlasenko Date: Sat, 7 Oct 2006 15:16:19 +0000 (-0000) Subject: awk: && -> & in "n->info && OPCLSMASK" - fixes bug 1067 X-Git-Tag: 1_4_0~533 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=890ac9deb2cc57cadd7aba4ee91bd012e19e239d;p=oweals%2Fbusybox.git awk: && -> & in "n->info && OPCLSMASK" - fixes bug 1067 --- diff --git a/editors/awk.c b/editors/awk.c index c1b56d9e5..e74053e75 100644 --- a/editors/awk.c +++ b/editors/awk.c @@ -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); }