Blame SOURCES/gdb-rhbz1187581-power8-regs-7of7.patch

190f2a
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
190f2a
From: Jan Kratochvil <jan.kratochvil@redhat.com>
190f2a
Date: Thu, 9 Aug 2018 17:18:49 +0200
190f2a
Subject: gdb-rhbz1187581-power8-regs-7of7.patch
190f2a
190f2a
;; Add GDB support to access/display POWER8 registers (IBM, RH BZ 1187581).
190f2a
190f2a
commit a7f25a84f4cc1df5248c46346337f19a2a66af5a
190f2a
Author: Simon Marchi <simon.marchi@ericsson.com>
190f2a
Date:   Mon Aug 6 16:54:47 2018 -0400
190f2a
190f2a
    Fix compilation failure in remote.c
190f2a
190f2a
    A recent patch introduced a few of these:
190f2a
190f2a
    /home/emaisin/src/binutils-gdb/gdb/remote.c:12862:19: error: format not a string literal and no format arguments [-Werror=format-security]
190f2a
         error (err_msg);
190f2a
                       ^
190f2a
190f2a
    Fix them by replacing the call to error with
190f2a
190f2a
      error ("%s", err_msg);
190f2a
190f2a
    gdb/ChangeLog:
190f2a
190f2a
            * remote.c (remote_target::download_tracepoint): Fix format
190f2a
            string errors.
190f2a
190f2a
+2018-08-06  Simon Marchi  <simon.marchi@ericsson.com>
190f2a
+
190f2a
+	* remote.c (remote_target::download_tracepoint): Fix format
190f2a
+	string errors.
190f2a
+
190f2a
 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
190f2a
190f2a
 	* tracefile.c: Include common/byte-vector.h.
190f2a
190f2a
diff --git a/gdb/remote.c b/gdb/remote.c
190f2a
--- a/gdb/remote.c
190f2a
+++ b/gdb/remote.c
190f2a
@@ -12826,7 +12826,7 @@ remote_target::download_tracepoint (struct bp_location *loc)
190f2a
 		  t->step_count, t->pass_count);
190f2a
 
190f2a
   if (ret < 0 || ret >= buf.size ())
190f2a
-    error (err_msg);
190f2a
+    error ("%s", err_msg);
190f2a
 
190f2a
   /* Fast tracepoints are mostly handled by the target, but we can
190f2a
      tell the target how big of an instruction block should be moved
190f2a
@@ -12846,7 +12846,7 @@ remote_target::download_tracepoint (struct bp_location *loc)
190f2a
 			      gdb_insn_length (loc->gdbarch, tpaddr));
190f2a
 
190f2a
 	      if (ret < 0 || ret >= size_left)
190f2a
-		error (err_msg);
190f2a
+		error ("%s", err_msg);
190f2a
 	    }
190f2a
 	  else
190f2a
 	    /* If it passed validation at definition but fails now,
190f2a
@@ -12877,7 +12877,7 @@ remote_target::download_tracepoint (struct bp_location *loc)
190f2a
 			      size_left, ":S");
190f2a
 
190f2a
 	      if (ret < 0 || ret >= size_left)
190f2a
-		error (err_msg);
190f2a
+		error ("%s", err_msg);
190f2a
 	    }
190f2a
 	  else
190f2a
 	    error (_("Static tracepoint not valid during download"));
190f2a
@@ -12905,14 +12905,14 @@ remote_target::download_tracepoint (struct bp_location *loc)
190f2a
 			  size_left, ":X%x,", aexpr->len);
190f2a
 
190f2a
 	  if (ret < 0 || ret >= size_left)
190f2a
-	    error (err_msg);
190f2a
+	    error ("%s", err_msg);
190f2a
 
190f2a
 	  size_left = buf.size () - strlen (buf.data ());
190f2a
 
190f2a
 	  /* Two bytes to encode each aexpr byte, plus the terminating
190f2a
 	     null byte.  */
190f2a
 	  if (aexpr->len * 2 + 1 > size_left)
190f2a
-	    error (err_msg);
190f2a
+	    error ("%s", err_msg);
190f2a
 
190f2a
 	  pkt = buf.data () + strlen (buf.data ());
190f2a
 
190f2a
@@ -12933,7 +12933,7 @@ remote_target::download_tracepoint (struct bp_location *loc)
190f2a
 		      size_left, "-");
190f2a
 
190f2a
       if (ret < 0 || ret >= size_left)
190f2a
-	error (err_msg);
190f2a
+	error ("%s", err_msg);
190f2a
     }
190f2a
 
190f2a
   putpkt (buf.data ());
190f2a
@@ -12956,7 +12956,7 @@ remote_target::download_tracepoint (struct bp_location *loc)
190f2a
 		      has_more ? '-' : 0);
190f2a
 
190f2a
       if (ret < 0 || ret >= buf.size ())
190f2a
-	error (err_msg);
190f2a
+	error ("%s", err_msg);
190f2a
 
190f2a
       putpkt (buf.data ());
190f2a
       remote_get_noisy_reply ();
190f2a
@@ -12979,7 +12979,7 @@ remote_target::download_tracepoint (struct bp_location *loc)
190f2a
 		      has_more ? "-" : "");
190f2a
 
190f2a
       if (ret < 0 || ret >= buf.size ())
190f2a
-	error (err_msg);
190f2a
+	error ("%s", err_msg);
190f2a
 
190f2a
       putpkt (buf.data ());
190f2a
       remote_get_noisy_reply ();
190f2a
@@ -12994,7 +12994,7 @@ remote_target::download_tracepoint (struct bp_location *loc)
190f2a
 	  ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
190f2a
 
190f2a
 	  if (ret < 0 || ret >= buf.size ())
190f2a
-	    error (err_msg);
190f2a
+	    error ("%s", err_msg);
190f2a
 
190f2a
 	  encode_source_string (b->number, loc->address, "at",
190f2a
 				event_location_to_string (b->location.get ()),
190f2a
@@ -13010,7 +13010,7 @@ remote_target::download_tracepoint (struct bp_location *loc)
190f2a
 	  ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
190f2a
 
190f2a
 	  if (ret < 0 || ret >= buf.size ())
190f2a
-	    error (err_msg);
190f2a
+	    error ("%s", err_msg);
190f2a
 
190f2a
 	  encode_source_string (b->number, loc->address,
190f2a
 				"cond", b->cond_string,