Catch \ at end of filter

This commit is contained in:
Hallvard Furuseth 1999-08-28 22:15:16 +00:00
parent 4d94092995
commit 66704f67b9

View file

@ -426,6 +426,8 @@ find_wildcard( char *s )
case '\\':
s++; /* skip over escape */
if ( *s == '\0' )
return NULL; /* escape at end of string */
if( hex2value( s[0] ) >= 0 && hex2value( s[1] ) >= 0 ) {
/* skip over lead digit of two hex digit code */
s++;