mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-10 11:20:10 +00:00
Don't use a nested function in rpmatch.
This commit is contained in:
parent
ba90e05052
commit
c079afb772
@ -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>
|
2014-09-12 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* scripts/soversions.awk: Do not handle configuration names.
|
* scripts/soversions.awk: Do not handle configuration names.
|
||||||
|
@ -22,42 +22,40 @@
|
|||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
|
|
||||||
|
|
||||||
int
|
/* Match against one of the response patterns, compiling the pattern
|
||||||
rpmatch (response)
|
first if necessary. */
|
||||||
const char *response;
|
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
|
const char *pattern = nl_langinfo (tag);
|
||||||
first if necessary. */
|
if (pattern != *lastp)
|
||||||
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);
|
/* The pattern has changed. */
|
||||||
if (pattern != *lastp)
|
if (*lastp != NULL)
|
||||||
{
|
{
|
||||||
/* The pattern has changed. */
|
/* Free the old compiled pattern. */
|
||||||
if (*lastp)
|
__regfree (re);
|
||||||
{
|
*lastp = NULL;
|
||||||
/* Free the old compiled pattern. */
|
}
|
||||||
__regfree (re);
|
/* Compile the pattern and cache it for future runs. */
|
||||||
*lastp = NULL;
|
if (__regcomp (re, pattern, REG_EXTENDED) != 0)
|
||||||
}
|
return -1;
|
||||||
/* Compile the pattern and cache it for future runs. */
|
*lastp = pattern;
|
||||||
if (__regcomp (re, pattern, REG_EXTENDED) != 0)
|
|
||||||
return -1;
|
|
||||||
*lastp = pattern;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Try the pattern. */
|
|
||||||
return __regexec (re, response, 0, NULL, 0) == 0 ? match : nomatch;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 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. */
|
/* We cache the response patterns and compiled regexps here. */
|
||||||
static const char *yesexpr, *noexpr;
|
static const char *yesexpr, *noexpr;
|
||||||
static regex_t yesre, nore;
|
static regex_t yesre, nore;
|
||||||
|
|
||||||
return (try (YESEXPR, 1, 0, &yesexpr, &yesre) ?:
|
return (try (response, YESEXPR, 1, 0, &yesexpr, &yesre) ?:
|
||||||
try (NOEXPR, 0, -1, &noexpr, &nore));
|
try (response, NOEXPR, 0, -1, &noexpr, &nore));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user