commit | 173a9cbe7031bc3574b3f41cb2d2375cf959ff2a | [log] [tgz] |
---|---|---|
author | Edgar Toernig <froese@gmx.de> | Mon Oct 30 17:39:17 2006 -0800 |
committer | Junio C Hamano <junkio@cox.net> | Mon Oct 30 17:39:17 2006 -0800 |
tree | 70112f85fdab470e68d566beda970956c9c8d794 | |
parent | 8d63d95f297446fe110ea76d350ae15676e2ed54 [diff] [blame] |
Use memmove instead of memcpy for overlapping areas Signed-off-by: Junio C Hamano <junkio@cox.net>
diff --git a/imap-send.c b/imap-send.c index 16804ab..a6a6568 100644 --- a/imap-send.c +++ b/imap-send.c
@@ -272,7 +272,7 @@ 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;