Skip to content

Commit 22ca89a

Browse files
committed
Fix ISANYOF encountering a zero byte in the input.
When it happened, it could lead to unexpected results, including broken internal state of the parser. Fixes #130.
1 parent bcdbd12 commit 22ca89a

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
# MD4C Change Log
33

44

5+
## Next Version (Work in Progress)
6+
7+
Fixes:
8+
9+
* [#130](https://github.com/mity/md4c/issues/130):
10+
Fix `ISANYOF` macro, which could provide unexpected results when encountering
11+
zero byte in the input text; in some cases leading to broken internal state
12+
of the parser.
13+
14+
515
## Version 0.4.5
616

717
Fixes:

src/md4c.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ struct MD_VERBATIMLINE_tag {
276276
/* Character classification.
277277
* Note we assume ASCII compatibility of code points < 128 here. */
278278
#define ISIN_(ch, ch_min, ch_max) ((ch_min) <= (unsigned)(ch) && (unsigned)(ch) <= (ch_max))
279-
#define ISANYOF_(ch, palette) (md_strchr((palette), (ch)) != NULL)
279+
#define ISANYOF_(ch, palette) ((ch) != _T('\0') && md_strchr((palette), (ch)) != NULL)
280280
#define ISANYOF2_(ch, ch1, ch2) ((ch) == (ch1) || (ch) == (ch2))
281281
#define ISANYOF3_(ch, ch1, ch2, ch3) ((ch) == (ch1) || (ch) == (ch2) || (ch) == (ch3))
282282
#define ISASCII_(ch) ((unsigned)(ch) <= 127)

0 commit comments

Comments
 (0)