]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Don't use a nested function in rpmatch.
authorRoland McGrath <roland@hack.frob.com>
Fri, 12 Sep 2014 21:58:55 +0000 (14:58 -0700)
committerRoland McGrath <roland@hack.frob.com>
Fri, 12 Sep 2014 21:58:55 +0000 (14:58 -0700)
ChangeLog
stdlib/rpmatch.c

index d02d8b6c1b7b319e08f4c9dd2880790c5659afa9..67c502530c8ad9fec04eff3e9423c651e0a08178 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-09-12  Roland McGrath  <roland@hack.frob.com>
+
+       * stdlib/rpmatch.c (try): New function, broken out of ...
+       (rpmatch): ... local function here.  Also, prototypify definition.
+
 2014-09-12  Joseph Myers  <joseph@codesourcery.com>
 
        * scripts/soversions.awk: Do not handle configuration names.
index 4d667a64a760b8f4372b0a09aa5f5ae6b340f928..ae1b5307029c08e9dd7ab8739d953085f57679cf 100644 (file)
 #include <regex.h>
 
 
-int
-rpmatch (response)
-     const char *response;
+/* Match against one of the response patterns, compiling the pattern
+   first if necessary.  */
+static int
+try (const char *response,
+     const int tag, const int match, const int nomatch,
+     const char **lastp, regex_t *re)
 {
-  /* Match against one of the response patterns, compiling the pattern
-     first if necessary.  */
-  auto int try (const int tag, const int match, const int nomatch,
-               const char **lastp, regex_t *re);
-
-  int try (const int tag, const int match, const int nomatch,
-          const char **lastp, regex_t *re)
+  const char *pattern = nl_langinfo (tag);
+  if (pattern != *lastp)
     {
-      const char *pattern = nl_langinfo (tag);
-      if (pattern != *lastp)
-       {
-         /* The pattern has changed.  */
-         if (*lastp)
-           {
-             /* Free the old compiled pattern.  */
-             __regfree (re);
-             *lastp = NULL;
-           }
-         /* Compile the pattern and cache it for future runs.  */
-         if (__regcomp (re, pattern, REG_EXTENDED) != 0)
-           return -1;
-         *lastp = pattern;
-       }
-
-      /* Try the pattern.  */
-      return __regexec (re, response, 0, NULL, 0) == 0 ? match : nomatch;
+      /* The pattern has changed.  */
+      if (*lastp != NULL)
+        {
+          /* Free the old compiled pattern.  */
+          __regfree (re);
+          *lastp = NULL;
+        }
+      /* Compile the pattern and cache it for future runs.  */
+      if (__regcomp (re, pattern, REG_EXTENDED) != 0)
+        return -1;
+      *lastp = pattern;
     }
 
+  /* Try the pattern.  */
+  return __regexec (re, response, 0, NULL, 0) == 0 ? match : nomatch;
+}
+
+int
+rpmatch (const char *response)
+{
   /* We cache the response patterns and compiled regexps here.  */
   static const char *yesexpr, *noexpr;
   static regex_t yesre, nore;
 
-  return (try (YESEXPR, 1, 0, &yesexpr, &yesre) ?:
-         try (NOEXPR, 0, -1, &noexpr, &nore));
+  return (try (response, YESEXPR, 1, 0, &yesexpr, &yesre) ?:
+         try (response, NOEXPR, 0, -1, &noexpr, &nore));
 }