diff options
author | Edgar Toernig <froese@gmx.de> | 2006-10-30 17:39:17 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-30 17:39:17 -0800 |
commit | 173a9cbe7031bc3574b3f41cb2d2375cf959ff2a (patch) | |
tree | 70112f85fdab470e68d566beda970956c9c8d794 | |
parent | 8d63d95f297446fe110ea76d350ae15676e2ed54 (diff) | |
download | git-173a9cbe7031bc3574b3f41cb2d2375cf959ff2a.tar.gz |
Use memmove instead of memcpy for overlapping areas
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | imap-send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imap-send.c b/imap-send.c index 16804ab286..a6a65680ee 100644 --- a/imap-send.c +++ b/imap-send.c @@ -272,7 +272,7 @@ buffer_gets( buffer_t * b, char **s ) n = b->bytes - start; if (n) - memcpy( b->buf, b->buf + start, n ); + memmove(b->buf, b->buf + start, n); b->offset -= start; b->bytes = n; start = 0; |