projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7a5784
)
awk: && -> & in "n->info && OPCLSMASK" - fixes bug 1067
author
Denis Vlasenko
<vda.linux@googlemail.com>
Sat, 7 Oct 2006 15:16:19 +0000
(15:16 -0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Sat, 7 Oct 2006 15:16:19 +0000
(15:16 -0000)
editors/awk.c
patch
|
blob
|
history
diff --git
a/editors/awk.c
b/editors/awk.c
index c1b56d9e531deeceafbc7f6292a9b87a03737dc0..e74053e75288177b8b156960fc28714934e4a489 100644
(file)
--- 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);
}