Blame SOURCES/glibc-rh1505492-unused-1.patch

25845f
commit 7f3e75f87a93265e5a9feb1ba320f4b19f29cd67
25845f
Author: Roland McGrath <roland@hack.frob.com>
25845f
Date:   Fri Feb 8 10:46:32 2013 -0800
25845f
25845f
    Remove dead variable in generic strcpy.
25845f
25845f
diff --git a/string/strcpy.c b/string/strcpy.c
25845f
index 812de20a3732cce5..bf624947cc780328 100644
25845f
--- a/string/strcpy.c
25845f
+++ b/string/strcpy.c
25845f
@@ -30,7 +30,6 @@ strcpy (dest, src)
25845f
   char c;
25845f
   char *__unbounded s = (char *__unbounded) src;
25845f
   const ptrdiff_t off = dest - s - 1;
25845f
-  size_t n;
25845f
 
25845f
   do
25845f
     {
25845f
@@ -39,8 +38,6 @@ strcpy (dest, src)
25845f
     }
25845f
   while (c != '\0');
25845f
 
25845f
-  n = s - src;
25845f
-
25845f
   return dest;
25845f
 }
25845f
 libc_hidden_builtin_def (strcpy)