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

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