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
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
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