projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11f3e33
)
fix broken regerror (typo) and missing message
author
Rich Felker
<dalias@aerifal.cx>
Fri, 13 Apr 2012 22:40:38 +0000
(18:40 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Fri, 13 Apr 2012 22:40:38 +0000
(18:40 -0400)
src/regex/regerror.c
patch
|
blob
|
history
diff --git
a/src/regex/regerror.c
b/src/regex/regerror.c
index 17119fff5a38ed0302440c9d0f754071f76e5bf9..0645b8e72cb3cd8711885948846b888bdb10685a 100644
(file)
--- a/
src/regex/regerror.c
+++ b/
src/regex/regerror.c
@@
-22,14
+22,14
@@
static const char messages[] = {
"Invalid contents of {}\0"
"Invalid character range\0"
"Out of memory\0"
- "
XXX
\0"
+ "
Repetition not preceded by valid expression
\0"
"\0Unknown error"
};
size_t regerror(int e, const regex_t *preg, char *buf, size_t size)
{
const char *s;
- for (s=messages; e && *s; e--,
e
+=strlen(s)+1);
+ for (s=messages; e && *s; e--,
s
+=strlen(s)+1);
if (!*s) s++;
return 1+snprintf(buf, size, "%s", s);
}