bfd: fix incorrect type used in sizeof
authorAndrew Burgess <andrew.burgess@embecosm.com>
Wed, 15 Sep 2021 10:24:49 +0000 (11:24 +0100)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Wed, 15 Sep 2021 10:32:33 +0000 (11:32 +0100)
Noticed in passing that we used 'sizeof (char **)' when calculating
the size of a list of 'char *' pointers.  Of course, this isn't really
going to make a difference anywhere, but we may as well be correct.

There should be no user visible changes after this commit.

bfd/ChangeLog:

* archures.c (bfd_arch_list): Use 'char *' instead of 'char **'
when calculating space for a string list.

bfd/ChangeLog
bfd/archures.c

index a69b50c6199217146075e46de2d35c75ee86b042..83d3f637022204a58d731c25a2f0746b95b5fd6c 100644 (file)
@@ -1,3 +1,8 @@
+2021-09-15  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * archures.c (bfd_arch_list): Use 'char *' instead of 'char **'
+       when calculating space for a string list.
+
 2021-09-014  Cupertino Miranda  <cmiranda@synopsys.com>
            Claudiu Zissulescu  <claziss@synopsys.com>
 
index 390691bfba17aa076f4c6e940626e8a5dc614bc9..31a41a1d863a4b14c828a736973fe84dd834b70d 100644 (file)
@@ -864,7 +864,7 @@ bfd_arch_list (void)
        }
     }
 
-  amt = (vec_length + 1) * sizeof (char **);
+  amt = (vec_length + 1) * sizeof (char *);
   name_list = (const char **) bfd_malloc (amt);
   if (name_list == NULL)
     return NULL;