Fix a simple mistake with pattern space, and add a test for it
This commit is contained in:
parent
47e5ca1ecb
commit
977451ef44
@ -1070,9 +1070,9 @@ static void process_file(FILE * file)
|
||||
}
|
||||
pattern_space = xrealloc(pattern_space, pattern_space_size + hold_space_size);
|
||||
if (pattern_space_size == 2) {
|
||||
strcat(pattern_space, "\n");
|
||||
} else {
|
||||
strcpy(pattern_space, "\n");
|
||||
} else {
|
||||
strcat(pattern_space, "\n");
|
||||
}
|
||||
if (hold_space) {
|
||||
strcat(pattern_space, hold_space);
|
||||
|
13
testsuite/sed/sed-append-hold-space-to-pattern-space
Normal file
13
testsuite/sed/sed-append-hold-space-to-pattern-space
Normal file
@ -0,0 +1,13 @@
|
||||
busybox sed 'G'>output <<EOF
|
||||
a
|
||||
b
|
||||
c
|
||||
EOF
|
||||
cmp -s output - <<EOF
|
||||
a
|
||||
|
||||
b
|
||||
|
||||
c
|
||||
|
||||
EOF
|
Loading…
Reference in New Issue
Block a user