summaryrefslogtreecommitdiff
path: root/pstack/pstack.c
diff options
context:
space:
mode:
authorunknown <vva@eagle.mysql.r18.ru>2004-03-19 18:38:25 +0400
committerunknown <vva@eagle.mysql.r18.ru>2004-03-19 18:38:25 +0400
commit8d335b8d12bade0958ddf8502bab17780a5e165e (patch)
tree1b026f3c9164153476ac85c6b137718d27e002b2 /pstack/pstack.c
parentc6a059964271c2b1cb7dc9905d9b708770d1278f (diff)
downloadmariadb-git-8d335b8d12bade0958ddf8502bab17780a5e165e.tar.gz
fixed bug #3200 "cannot compile with pstack"
as downgrade of patch for bug #1661 "Compiling --with-pstack fails with binutils 2.13.90"
Diffstat (limited to 'pstack/pstack.c')
-rw-r--r--pstack/pstack.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pstack/pstack.c b/pstack/pstack.c
index 48280d4aedb..5c6e2baf909 100644
--- a/pstack/pstack.c
+++ b/pstack/pstack.c
@@ -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;