diff options
author | Nick Clifton <nickc@redhat.com> | 2004-05-05 15:46:35 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2004-05-05 15:46:35 +0000 |
commit | 33216455a7084992c03481fee8a8320f98677ae1 (patch) | |
tree | 49f003e33849158ba305ecdc7a857fb90925ff2a /bfd/trad-core.c | |
parent | 10a4b113218bc2f44aa4f511cc504e9b1c658bf4 (diff) | |
download | binutils-33216455a7084992c03481fee8a8320f98677ae1.zip binutils-33216455a7084992c03481fee8a8320f98677ae1.tar.gz binutils-33216455a7084992c03481fee8a8320f98677ae1.tar.bz2 |
Remove checks of the return value from bfd_cache_ookup()
Diffstat (limited to 'bfd/trad-core.c')
-rw-r--r-- | bfd/trad-core.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bfd/trad-core.c b/bfd/trad-core.c index f8c03d7..1b9e69f 100644 --- a/bfd/trad-core.c +++ b/bfd/trad-core.c @@ -111,8 +111,7 @@ trad_unix_core_file_p (abfd) { FILE *stream = bfd_cache_lookup (abfd); struct stat statbuf; - if (stream == NULL) - return 0; + if (fstat (fileno (stream), &statbuf) < 0) { bfd_set_error (bfd_error_system_call); |