diff options
Diffstat (limited to 'editors')
-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) slashes++; /* Odd number of preceding slashes - newline is escaped */ if (slashes & 1) { - strcpy(eol-1, eol); + overlapping_strcpy(eol - 1, eol); eol = strchr(eol, '\n'); goto next; } |