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

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