diff options
Diffstat (limited to 'editors/sed.c')
-rw-r--r-- | editors/sed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c index 496d3d22e..eb31f7d2e 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -1219,7 +1219,7 @@ static void add_cmd_block(char *cmdstr) | |||
1219 | slashes++; | 1219 | slashes++; |
1220 | /* Odd number of preceding slashes - newline is escaped */ | 1220 | /* Odd number of preceding slashes - newline is escaped */ |
1221 | if (slashes & 1) { | 1221 | if (slashes & 1) { |
1222 | strcpy(eol-1, eol); | 1222 | overlapping_strcpy(eol - 1, eol); |
1223 | eol = strchr(eol, '\n'); | 1223 | eol = strchr(eol, '\n'); |
1224 | goto next; | 1224 | goto next; |
1225 | } | 1225 | } |