Remove unnecessary memsets in sframe-dump.c
authorAlan Modra <amodra@gmail.com>
Tue, 21 Mar 2023 23:07:43 +0000 (09:37 +1030)
committerAlan Modra <amodra@gmail.com>
Tue, 21 Mar 2023 23:09:41 +0000 (09:39 +1030)
* sframe-dump.c (dump_sframe_func_with_fres): Don't memset temp.

libsframe/sframe-dump.c

index 5417a16f48c6b914239c95741bc0b89b7dde76f9..77aa87d67a15b90299f072b74320e918a8eefe61 100644 (file)
@@ -133,7 +133,6 @@ dump_sframe_func_with_fres (sframe_decoder_ctx *sfd_ctx,
     printf (", pauth = B key");
 
   char temp[100];
-  memset (temp, 0, 100);
 
   printf ("\n    %-7s%-8s %-10s%-10s%-13s", "STARTPC", fde_type_marker, "CFA", "FP", "RA");
   for (j = 0; j < num_fres; j++)
@@ -158,7 +157,6 @@ dump_sframe_func_with_fres (sframe_decoder_ctx *sfd_ctx,
       printf ("  %-10s", temp);
 
       /* Dump SP/FP info.  */
-      memset (temp, 0, 100);
       if (err[1] == 0)
        sprintf (temp, "c%+d", fp_offset);
       else
@@ -166,7 +164,6 @@ dump_sframe_func_with_fres (sframe_decoder_ctx *sfd_ctx,
       printf ("%-10s", temp);
 
       /* Dump RA info.  */
-      memset (temp, 0, 100);
       if (err[2] == 0)
        sprintf (temp, "c%+d", ra_offset);
       else