mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
Use memmove to copy overlap memory.
2010-03-30 H.J. Lu <hongjiu.lu@intel.com> PR gas/11456 * input-scrub.c (input_scrub_next_buffer): Use memmove instead of memcpy to copy overlap memory.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2010-03-30 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR gas/11456
|
||||
* input-scrub.c (input_scrub_next_buffer): Use memmove instead
|
||||
of memcpy to copy overlap memory.
|
||||
|
||||
2010-03-25 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* Makefile.am (TARGET_CPU_CFILES): Add config/tc-tic6x.c.
|
||||
|
||||
@@ -343,8 +343,8 @@ input_scrub_next_buffer (char **bufp)
|
||||
|
||||
if (partial_size)
|
||||
{
|
||||
memcpy (buffer_start + BEFORE_SIZE, partial_where,
|
||||
(unsigned int) partial_size);
|
||||
memmove (buffer_start + BEFORE_SIZE, partial_where,
|
||||
(unsigned int) partial_size);
|
||||
memcpy (buffer_start + BEFORE_SIZE, save_source, AFTER_SIZE);
|
||||
}
|
||||
limit = input_file_give_next_buffer (buffer_start
|
||||
|
||||
Reference in New Issue
Block a user