svn commit: trunk/busybox/editors

vda at busybox.net vda at busybox.net
Sat Oct 7 15:16:20 UTC 2006


Author: vda
Date: 2006-10-07 08:16:19 -0700 (Sat, 07 Oct 2006)
New Revision: 16339

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


Modified:
   trunk/busybox/editors/awk.c


Changeset:
Modified: trunk/busybox/editors/awk.c
===================================================================
--- trunk/busybox/editors/awk.c	2006-10-07 15:00:29 UTC (rev 16338)
+++ trunk/busybox/editors/awk.c	2006-10-07 15:16:19 UTC (rev 16339)
@@ -1356,7 +1356,7 @@
 	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);
 	}




More information about the busybox-cvs mailing list