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

00db10
commit bde2667a22c355467a4f07246c6d07a9dcc89366
00db10
Author: Joseph Myers <joseph@codesourcery.com>
00db10
Date:   Tue Nov 25 21:40:51 2014 +0000
00db10
00db10
    Fix warning in posix/bug-regex31.c.
00db10
    
00db10
    This patch fixes a "set but not used" warning in posix/bug-regex31.c.
00db10
    A variable res stored an indication of whether the test behaved as
00db10
    expected, but was then ignored and the test returned 0 unconditionally
00db10
    (as an mtrace test, the auxiliary test for leaks could still have
00db10
    failed if that bug was present).  This patch makes the test return
00db10
    res.
00db10
    
00db10
    Tested for x86_64.
00db10
    
00db10
            * posix/bug-regex31.c (main): Return RES not 0.
00db10
00db10
diff --git a/posix/bug-regex31.c b/posix/bug-regex31.c
00db10
index fc485815fcf67d82..fd7e0c57cab515be 100644
00db10
--- a/posix/bug-regex31.c
00db10
+++ b/posix/bug-regex31.c
00db10
@@ -33,5 +33,5 @@ main (void)
00db10
 
00db10
   free (buf);
00db10
 
00db10
-  return 0;
00db10
+  return res;
00db10
 }