We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0bb2af commit 06242aaCopy full SHA for 06242aa
src/unescape.c
@@ -47,7 +47,8 @@ static const bool ascii_printable_chars[] = {
47
48
static inline bool
49
char_is_ascii_printable(const char c) {
50
- return ascii_printable_chars[(unsigned char) c];
+ unsigned char v = (unsigned char) c;
51
+ return (v < 0x80) && ascii_printable_chars[v];
52
}
53
54
/******************************************************************************/
0 commit comments