This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch ld]: Fix duplicates in export-table due missing set of is_ident.


Hi,

this patch avoids double-entries for first or last element search.  We missed
to set for identity is_indent in those cases.

ChangeLog

2012-02-13  Kai Tietz  <ktietz@redhat.com>

	* deffilep.y (find_export_in_list): Set is_indent for
	first or last element, if identical.

Tested for i686-w64-mingw32, and x86_64-w64-mingw32.  Ok for apply?

Regards,
Kai

Index: deffilep.y
===================================================================
RCS file: /cvs/src/src/ld/deffilep.y,v
retrieving revision 1.37
diff -r1.37 deffilep.y
625c625,629
<     return 0;
---
>     {
>       if (!e)
>         *is_ident = 1;
>       return 0;
>     }
631c635,639
<     return max - 1;
---
>     {
>       if (!e)
> 	*is_ident = 1;
>       return max - 1;
>     }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]