Re: found vuln in bfd lib Coff code

2005-08-17 Thread Nick Clifton
Hi ICBM, Found a new vuln in bfd lib coff code and similar with the last one... In the do_slurp_coff_armap() funciton: static bfd_boolean do_slurp_coff_armap (bfd *abfd){ ¡­ carsym_size = (nsymz * sizeof (carsym)); //uses the nsymz from file ptr

Re: infinate loop in as with .org pseudo

2005-08-17 Thread Nick Clifton
Hi Dan, Given this as input (three lines): foo = . .org foo+16 foo = . GNU as (with no special command-line options) apparently goes into an infinate loop. Not surprising really since that is a pathological piece of code. Still infinite loops are bad things, so please could you try out

Re: infinate loop in as with .org pseudo

2005-08-17 Thread Dan Gohman
On Wed, Aug 17, 2005 at 06:59:14PM +0100, Nick Clifton wrote: > Hi Dan, > > >Given this as input (three lines): > > > > foo = . > > .org foo+16 > > foo = . > > > >GNU as (with no special command-line options) apparently goes into an > >infinate loop. > > Not surprising really since that is a path