summaryrefslogtreecommitdiff
path: root/debian/patches/006_better_file_error.patch
blob: 2c4e0015d20cbd47c7695f584cc38b51802d54eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Author: David Kimdon <dwhedon@gordian.com>
Description: Specify which filename is causing an error if the filename is a
directory. (#45832)
Index: b/bfd/opncls.c
===================================================================
--- a/bfd/opncls.c
+++ b/bfd/opncls.c
@@ -196,6 +196,13 @@ bfd_fopen (const char *filename, const c
 {
   bfd *nbfd;
   const bfd_target *target_vec;
+  struct stat s;
+
+  if (stat (filename, &s) == 0)
+    if (S_ISDIR(s.st_mode)) {
+      bfd_set_error (bfd_error_file_not_recognized);
+      return NULL;
+    }
 
   nbfd = _bfd_new_bfd ();
   if (nbfd == NULL)