diff options
Diffstat (limited to 'gdb/solib.c')
-rw-r--r-- | gdb/solib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index a957411..d83c95a 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -762,8 +762,9 @@ elf_locate_base (void) #ifdef DT_MIPS_RLD_MAP else if (dyn_tag == DT_MIPS_RLD_MAP) { - char pbuf[TARGET_PTR_BIT / HOST_CHAR_BIT]; + char *pbuf; + pbuf = alloca (TARGET_PTR_BIT / HOST_CHAR_BIT); /* DT_MIPS_RLD_MAP contains a pointer to the address of the dynamic link structure. */ dyn_ptr = bfd_h_get_32 (exec_bfd, |