ld/emultempl/msp430.em: Remove unused variable
authorJozef Lawrynowicz <jozef.l@mittosystems.com>
Thu, 27 Aug 2020 17:17:43 +0000 (18:17 +0100)
committerJozef Lawrynowicz <jozef.l@mittosystems.com>
Thu, 27 Aug 2020 19:10:52 +0000 (20:10 +0100)
ld/ChangeLog:

* emultempl/msp430.em: Remove unused variable "buf".

ld/ChangeLog
ld/emultempl/msp430.em

index 4fd5546e9297e40d8becfebc37939b4f1eae5087..7881dd1f0fce646087427b6340f487068b877645 100644 (file)
@@ -1,3 +1,7 @@
+2020-08-27  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
+
+       * emultempl/msp430.em: Remove unused variable "buf".
+
 2020-08-27  Nick Alcock  <nick.alcock@oracle.com>
 
        * ldlang.c (dump_ctf_errs): Unquote CTF error messages.
index 2a840c1e2bfcbe742994adcbb38d446b8800ebd4..a47998a00a9ae0bf2efccdc963126289044dae20 100644 (file)
@@ -261,7 +261,6 @@ gld${EMULATION_NAME}_place_orphan (asection * s,
   char * lower_name;
   char * upper_name;
   char * name;
-  char * buf = NULL;
   lang_output_section_statement_type * lower;
   lang_output_section_statement_type * upper;
 
@@ -294,7 +293,7 @@ gld${EMULATION_NAME}_place_orphan (asection * s,
      only use the part of the name before the second dot.  */
   if (strchr (secname + 1, '.') != NULL)
     {
-      buf = name = xstrdup (secname);
+      name = xstrdup (secname);
 
       * strchr (name + 1, '.') = 0;
     }
@@ -330,7 +329,6 @@ gld${EMULATION_NAME}_place_orphan (asection * s,
  end:
   free (upper_name);
   free (lower_name);
-  free (buf);
   return lower;
 }
 EOF