PR binutils/17754
* internal.h (internal_auxent): Increase size of x_fname field to
20 to allow for PE format's longer file names.
+2015-01-06 Alan Modra <amodra@gmail.com>
+
+ PR binutils/17754
+ * internal.h (internal_auxent): Increase size of x_fname field to
+ 20 to allow for PE format's longer file names.
+
2015-01-01 Alan Modra <amodra@gmail.com>
Update year range in copyright notice of all files.
union
{
- char x_fname[FILNMLEN];
+ /* PR 17754: We use to FILNMLEN for the size of the x_fname
+ array, but that cause problems as PE targets use a larger
+ value. We cannot use their definition of EFILNMLEN as this
+ header can be used without including any PE headers. */
+ char x_fname[20];
struct
{
long x_zeroes;