Browse Source

memmove for overlapping mem copies.

wip/maildir-uid-dupes-test
Oswald Buddenhagen 18 years ago
parent
commit
617d1a6e49
  1. 2
      src/drv_imap.c

2
src/drv_imap.c

@ -369,7 +369,7 @@ buffer_gets( buffer_t * b, char **s )
n = b->bytes - start; n = b->bytes - start;
if (n) if (n)
memcpy( b->buf, b->buf + start, n ); memmove( b->buf, b->buf + start, n );
b->offset -= start; b->offset -= start;
b->bytes = n; b->bytes = n;
start = 0; start = 0;

Loading…
Cancel
Save