mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
core-util: Check that we actually have regexec before we use it
Thanks to Pierre Ossman for reporting the bug and providing an initial fix on which this patch is based. BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=69708
This commit is contained in:
parent
826c8f69d3
commit
345de08f2b
1 changed files with 5 additions and 0 deletions
|
|
@ -954,6 +954,7 @@ void pa_reset_priority(void) {
|
|||
}
|
||||
|
||||
int pa_match(const char *expr, const char *v) {
|
||||
#if defined(HAVE_REGEX_H) || defined(HAVE_PCREPOSIX_H)
|
||||
int k;
|
||||
regex_t re;
|
||||
int r;
|
||||
|
|
@ -976,6 +977,10 @@ int pa_match(const char *expr, const char *v) {
|
|||
errno = EINVAL;
|
||||
|
||||
return r;
|
||||
#else
|
||||
errno = ENOSYS;
|
||||
return -1;
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Try to parse a boolean string value.*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue