mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
fixed bug #1661 Compiling --pstack fails with binutils 2.13.90
fixed wrong execution of bfd_get_symtab_upper_bound in pstack/pstack.c for files which don't contain symbols.. to avoid failing of new binutils (old binutils returned 0 in this case) pstack/pstack.c: fixed bug #1661 Compiling --pstack fails with binutils 2.13.90 fixed wrong execution of bfd_get_symtab_upper_bound for files which don't contain symbols.. to avoid failing of new binutils (old binutils returned 0 in this case)
This commit is contained in:
parent
ae8e10d6e5
commit
a1466d1edc
1 changed files with 2 additions and 1 deletions
|
@ -2667,7 +2667,8 @@ pstack_install_segv_action( const char* path_format_)
|
|||
if ((abfd = load_bfd(pid))==0)
|
||||
fprintf(stderr, "BFD load failed..\n");
|
||||
else {
|
||||
long storage_needed = bfd_get_symtab_upper_bound (abfd);
|
||||
long storage_needed= (bfd_get_file_flags(abfd) & HAS_SYMS) ?
|
||||
bfd_get_symtab_upper_bound (abfd) : 0;
|
||||
long i;
|
||||
(void)i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue