diff options
author | Rob Landley <rob@landley.net> | 2019-05-06 13:02:49 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-05-06 13:02:49 -0500 |
commit | eb318d5b03223a8f2c5641ee45f9b28647bd3f47 (patch) | |
tree | 90b1790b4e5be96cec4b35fae1f688185feb7818 /toys/posix | |
parent | 6a40e12124b2d441a1085a4e486d685ed12665d0 (diff) | |
download | toybox-eb318d5b03223a8f2c5641ee45f9b28647bd3f47.tar.gz |
Round allocation up to page size so s/x/yy/g thrashes less.
And remove a "nine princes in amber" themed name I missed.
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/sed.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toys/posix/sed.c b/toys/posix/sed.c index d9bb5c94..4e81001a 100644 --- a/toys/posix/sed.c +++ b/toys/posix/sed.c @@ -239,14 +239,14 @@ static char *extend_string(char **old, char *new, int oldlen, int newlen) } // An empty regex repeats the previous one -static void *get_regex(void *trump, int offset) +static void *get_regex(void *command, int offset) { if (!offset) { if (!TT.lastregex) error_exit("no previous regex"); return TT.lastregex; } - return TT.lastregex = offset+(char *)trump; + return TT.lastregex = offset+(char *)command; } // Apply pattern to line from input file @@ -469,7 +469,7 @@ static void sed_line(char **pline, long plen) char *rline = line, *new = command->arg2 + (char *)command, *l2 = 0; regmatch_t *match = (void *)toybuf; regex_t *reg = get_regex(command, command->arg1); - int mflags = 0, count = 0, l2used = 0, zmatch = 1, l2l = len, + int mflags = 0, count = 0, l2used = 0, zmatch = 1, l2l = len, l2old = 0, mlen, off, newlen; // Loop finding match in remaining line (up to remaining len) @@ -515,7 +515,7 @@ static void sed_line(char **pline, long plen) // Adjust allocation size of new string, copy data we know we'll keep l2l += newlen-mlen; - if (newlen>mlen || !l2) l2 = xrealloc(l2, l2l+1); + if ((l2l|0xfff) > l2old) l2 = xrealloc(l2, l2old = (l2l|0xfff)+1); if (match[0].rm_so) { memcpy(l2+l2used, rline, match[0].rm_so); l2used += match[0].rm_so; |