Blame SOURCES/glibc-rh1505492-uninit-2.patch

25845f
commit d69b7f5ac02989ce3d8577eed86da3e0c8af6c1c
25845f
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
25845f
Date:   Thu Jul 10 10:32:29 2014 +0530
25845f
25845f
    Add comment about SIZE initialization in xdr.c
25845f
25845f
diff --git a/sunrpc/xdr.c b/sunrpc/xdr.c
25845f
index b3e713cbc9c3e012..d0afd34466f73def 100644
25845f
--- a/sunrpc/xdr.c
25845f
+++ b/sunrpc/xdr.c
25845f
@@ -738,6 +738,8 @@ xdr_string (xdrs, cpp, maxsize)
25845f
      u_int maxsize;
25845f
 {
25845f
   char *sp = *cpp;	/* sp is the actual string pointer */
25845f
+  /* Initialize to silence the compiler.  It is not really needed because SIZE
25845f
+     never actually gets used without being initialized.  */
25845f
   u_int size = 0;
25845f
   u_int nodesize;
25845f