f4debc5ce5
- add security fix for CVE-2009-3720 (#531697) - run the test suite
12 lines
357 B
Diff
12 lines
357 B
Diff
--- expat-1.95.8/lib/xmltok_impl.c.cve3720
|
|
+++ expat-1.95.8/lib/xmltok_impl.c
|
|
@@ -1741,7 +1741,7 @@ PREFIX(updatePosition)(const ENCODING *e
|
|
const char *end,
|
|
POSITION *pos)
|
|
{
|
|
- while (ptr != end) {
|
|
+ while (ptr < end) {
|
|
switch (BYTE_TYPE(enc, ptr)) {
|
|
#define LEAD_CASE(n) \
|
|
case BT_LEAD ## n: \
|