diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 68e585bb79..fefe1ab4e0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2003-07-04 Joel Brobecker + + * rs6000-nat.c (vmap_symtab): Fix compilation error. + 2003-07-04 Kris Warkentin * config/i386/nto.mh: Set XM_FILE to xm-i386.h diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c index e825529ba9..ea2457040a 100644 --- a/gdb/rs6000-nat.c +++ b/gdb/rs6000-nat.c @@ -664,7 +664,9 @@ vmap_symtab (struct vmap *vp) /* If symbols are not yet loaded, offsets are not yet valid. */ return; - new_offsets = (struct section_offsets *) alloca (SIZEOF_SECTION_OFFSETS); + new_offsets = + (struct section_offsets *) + alloca (SIZEOF_N_SECTION_OFFSETS (objfile->num_sections)); for (i = 0; i < objfile->num_sections; ++i) new_offsets->offsets[i] = ANOFFSET (objfile->section_offsets, i);