* oasys.c (oasys_write_header): Fix compilation warning on zero-sized
	memset.
This commit is contained in:
Jan Kratochvil 2012-02-11 15:10:12 +00:00
parent d73f2619de
commit 3e3c397d77
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2012-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
Nick Clifton <nickc@redhat.com>
* oasys.c (oasys_write_header): Fix compilation warning on zero-sized
memset.
2012-02-10 Iain Sandoe <idsandoe@googlemail.com>
* mach-o.c (bfd_mach_o_build_seg_command): Count zerofill section

View File

@ -906,9 +906,11 @@ oasys_write_header (bfd *abfd)
if (length > (size_t) sizeof (r.module_name))
length = sizeof (r.module_name);
else if (length < (size_t) sizeof (r.module_name))
(void) memset (r.module_name + length, ' ',
sizeof (r.module_name) - length);
(void) memcpy (r.module_name, abfd->filename, length);
(void) memset (r.module_name + length, ' ', sizeof (r.module_name) - length);
r.version_number = OASYS_VERSION_NUMBER;
r.rev_number = OASYS_REV_NUMBER;