summaryrefslogtreecommitdiff
path: root/package/busybox/busybox-1.14.0-awk.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/busybox/busybox-1.14.0-awk.patch')
-rw-r--r--package/busybox/busybox-1.14.0-awk.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/package/busybox/busybox-1.14.0-awk.patch b/package/busybox/busybox-1.14.0-awk.patch
new file mode 100644
index 000000000..ef194eaf8
--- /dev/null
+++ b/package/busybox/busybox-1.14.0-awk.patch
@@ -0,0 +1,21 @@
+--- busybox-1.14.0/editors/awk.c Tue Apr 14 01:43:09 2009
++++ busybox-1.14.0-awk/editors/awk.c Mon May 18 23:49:29 2009
+@@ -1571,13 +1571,14 @@
+ n++; /* we saw yet another delimiter */
+ } else {
+ pmatch[0].rm_eo = l;
+- if (s[l]) pmatch[0].rm_eo++;
++ if (s[l])
++ pmatch[0].rm_eo++;
+ }
+ memcpy(s1, s, l);
+ /* make sure we remove *all* of the separator chars */
+- while (l < pmatch[0].rm_eo) {
+- s1[l++] = '\0';
+- }
++ do {
++ s1[l] = '\0';
++ } while (++l < pmatch[0].rm_eo);
+ nextword(&s1);
+ s += pmatch[0].rm_eo;
+ } while (*s);