# HG changeset patch # User Jim Blandy # Date 724300109 0 # Node ID 5da6b5575f48539168e55c2a77143164330a22c2 # Parent c4da55e6cfd3bd5592dfe5a543b8ca06322d4e9d *** empty log message *** diff -r c4da55e6cfd3 -r 5da6b5575f48 src/regex.c --- a/src/regex.c Sat Dec 12 15:43:12 1992 +0000 +++ b/src/regex.c Mon Dec 14 02:28:29 1992 +0000 @@ -2197,18 +2197,20 @@ unsigned this_char; const char *p = *p_ptr; + int range_start, range_end; - /* Even though the pattern is a signed `char *', we need to fetch into - `unsigned char's. Reason: if the high bit of the pattern character - is set, the range endpoints will be negative if we fetch into a - signed `char *'. */ - unsigned char range_end; - unsigned char range_start = p[-2]; - if (p == pend) return REG_ERANGE; - PATFETCH (range_end); + /* Even though the pattern is a signed `char *', we need to fetch + with unsigned char *'s; if the high bit of the pattern character + is set, the range endpoints will be negative if we fetch using a + signed char *. + + We also want to fetch the endpoints without translating them; the + appropriate translation is done in the bit-setting loop below. */ + range_start = ((unsigned char *) p)[-2]; + range_end = ((unsigned char *) p)[0]; /* Have to increment the pointer into the pattern string, so the caller isn't still at the ending character. */