diff options
author | Alan Modra <amodra@gmail.com> | 2014-12-28 15:28:19 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2014-12-28 15:34:01 +1030 |
commit | de0d78958fe3db5184c5a7174f55f08d41c8706b (patch) | |
tree | 64ae2b93a4c00849e1cc9731b4d89d97972bce55 /bfd/ChangeLog | |
parent | ce637ffbe6b75a4a676bbf5f68434abf5261ba99 (diff) | |
download | gdb-de0d78958fe3db5184c5a7174f55f08d41c8706b.zip gdb-de0d78958fe3db5184c5a7174f55f08d41c8706b.tar.gz gdb-de0d78958fe3db5184c5a7174f55f08d41c8706b.tar.bz2 |
Misplaced parenthesis calculates two too few bytes for string
Factor out strlen to give better code and less likelihood of a repeat
of this problem.
PR 17766
* pei-x86_64.c (pex64_bfd_print_pdata_section): Correct string
length. Use memcpy rather than strcpy.
Diffstat (limited to 'bfd/ChangeLog')
-rw-r--r-- | bfd/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 7b3a474..b883d3c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2014-12-28 Alan Modra <amodra@gmail.com> + + PR 17766 + * pei-x86_64.c (pex64_bfd_print_pdata_section): Correct string + length. Use memcpy rather than strcpy. + 2014-12-26 Alan Modra <amodra@gmail.com> PR 17755 |