summaryrefslogtreecommitdiff
path: root/read.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-11-24 03:45:38 -0500
committerPaul Smith <psmith@gnu.org>2013-11-24 03:45:38 -0500
commit30b25acc4ece3755314402954f2cb9abce348c3e (patch)
treed33c858d28c2b607e88485699dfe275fc3a24376 /read.c
parentf8905059c3caba75fcbf6481ae6cc2b2eefdd67f (diff)
downloadgunmake-30b25acc4ece3755314402954f2cb9abce348c3e.tar.gz
* read.c (unescape_char): Use memmove() for overlapping memory.
Diffstat (limited to 'read.c')
-rw-r--r--read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/read.c b/read.c
index 663ffe8..b408c24 100644
--- a/read.c
+++ b/read.c
@@ -2343,14 +2343,14 @@ unescape_char (char *string, int c)
if (*e != c || l%2 == 0)
{
/* It's not; just take it all without unescaping. */
- memcpy (p, s, l);
+ memmove (p, s, l);
p += l;
}
else if (l > 1)
{
/* It is, and there's >1 backslash. Take half of them. */
l /= 2;
- memcpy (p, s, l);
+ memmove (p, s, l);
p += l;
}
s = e;