summaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorDave Korn <dave.korn@artimi.com>2009-06-25 12:32:10 +0000
committerDave Korn <dave.korn@artimi.com>2009-06-25 12:32:10 +0000
commit14798489afb6560d94c0c438b641544628da72a8 (patch)
tree3249387af10a68cbaf3d43b2776f751972032401 /bfd
parentef91e810b447515a595bf4b201ffcf1be39174ac (diff)
downloadbinutils-redhat-14798489afb6560d94c0c438b641544628da72a8.tar.gz
2009-06-25 Rafael Avila de Espindola <espindola@google.com>
* plugin.c (load_plugin): Use stat and S_ISREG instead of the d_type field of struct dirent.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/plugin.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index f5cbe7119e..0ac28206a7 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-25 Rafael Avila de Espindola <espindola@google.com>
+
+ * plugin.c (load_plugin): Use stat and S_ISREG instead of the d_type
+ field of struct dirent.
+
2009-06-23 Tristan Gingold <gingold@adacore.com>
* vms.c (vms_get_synthetic_symtab): Remove duplicate definition
diff --git a/bfd/plugin.c b/bfd/plugin.c
index ca47ab620f..053fdd1bd7 100644
--- a/bfd/plugin.c
+++ b/bfd/plugin.c
@@ -203,11 +203,11 @@ load_plugin (void)
while ((ent = readdir (d)))
{
char *full_name;
- if (ent->d_type != DT_REG && ent->d_type != DT_LNK)
- continue;
+ struct stat s;
full_name = concat (p, "/", ent->d_name, NULL);
- found = try_load_plugin (full_name);
+ if (stat(full_name, &s) == 0 && S_ISREG (s.st_mode))
+ found = try_load_plugin (full_name);
free (full_name);
if (found)
break;