summaryrefslogtreecommitdiff
path: root/posix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2010-01-22 09:57:30 -0800
committerUlrich Drepper <drepper@redhat.com>2010-01-22 09:57:30 -0800
commit0dae5d4ec1740b511af97c600df1ceea37ada73d (patch)
treeb85005736370e34b096de29b377a063c71e4d557 /posix
parent22364644882b6cf426ed13be5b6480c3a9210eb1 (diff)
regex_internal.c: remove useless variable and the code to set it.
Diffstat (limited to 'posix')
-rw-r--r--posix/regex_internal.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/posix/regex_internal.c b/posix/regex_internal.c
index 67c174a824..95f2a0e405 100644
--- a/posix/regex_internal.c
+++ b/posix/regex_internal.c
@@ -701,7 +701,7 @@ re_string_reconstruct (re_string_t *pstr, int idx, int eflags)
if (pstr->is_utf8)
{
- const unsigned char *raw, *p, *q, *end;
+ const unsigned char *raw, *p, *end;
/* Special case UTF-8. Multi-byte chars start with any
byte other than 0x80 - 0xbf. */
@@ -730,13 +730,11 @@ re_string_reconstruct (re_string_t *pstr, int idx, int eflags)
unsigned char buf[6];
size_t mbclen;
- q = p;
if (BE (pstr->trans != NULL, 0))
{
int i = mlen < 6 ? mlen : 6;
while (--i >= 0)
buf[i] = pstr->trans[p[i]];
- q = buf;
}
/* XXX Don't use mbrtowc, we know which conversion
to use (UTF-8 -> UCS4). */