-
-
Notifications
You must be signed in to change notification settings - Fork 897
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cruby): patch libxml2 to address GNOME/libxml2#200
This patch shrinks the libxml2 input buffer in a few parser functions. Fixes #2132
- Loading branch information
1 parent
d2f1bc7
commit ec13839
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
70 changes: 70 additions & 0 deletions
70
patches/libxml2/0010-parser.c-shrink-the-input-buffer-when-appropriate.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
From ca565c1edef9a455453fa8564270cc9c5813e1b9 Mon Sep 17 00:00:00 2001 | ||
From: Mike Dalessio <mike.dalessio@gmail.com> | ||
Date: Sun, 31 Jan 2021 09:53:56 -0500 | ||
Subject: [PATCH] parser.c: shrink the input buffer when appropriate | ||
|
||
Fixes GNOME/libxml2#200 | ||
|
||
Also see discussions at: | ||
- GNOME/libxml2#192 | ||
- https://gitlab.gnome.org/nwellnhof/libxml2/-/commit/99bda1e | ||
- https://github.com/sparklemotion/nokogiri/issues/2132 | ||
--- | ||
parser.c | 6 ++++++ | ||
1 file changed, 6 insertions(+) | ||
|
||
diff --git a/parser.c b/parser.c | ||
index a7bdc7f..efde672 100644 | ||
--- a/parser.c | ||
+++ b/parser.c | ||
@@ -4204,6 +4204,7 @@ xmlParseSystemLiteral(xmlParserCtxtPtr ctxt) { | ||
} | ||
count++; | ||
if (count > 50) { | ||
+ SHRINK; | ||
GROW; | ||
count = 0; | ||
if (ctxt->instate == XML_PARSER_EOF) { | ||
@@ -4291,6 +4292,7 @@ xmlParsePubidLiteral(xmlParserCtxtPtr ctxt) { | ||
buf[len++] = cur; | ||
count++; | ||
if (count > 50) { | ||
+ SHRINK; | ||
GROW; | ||
count = 0; | ||
if (ctxt->instate == XML_PARSER_EOF) { | ||
@@ -4571,6 +4573,7 @@ xmlParseCharDataComplex(xmlParserCtxtPtr ctxt, int cdata) { | ||
} | ||
count++; | ||
if (count > 50) { | ||
+ SHRINK; | ||
GROW; | ||
count = 0; | ||
if (ctxt->instate == XML_PARSER_EOF) | ||
@@ -4776,6 +4779,7 @@ xmlParseCommentComplex(xmlParserCtxtPtr ctxt, xmlChar *buf, | ||
|
||
count++; | ||
if (count > 50) { | ||
+ SHRINK; | ||
GROW; | ||
count = 0; | ||
if (ctxt->instate == XML_PARSER_EOF) { | ||
@@ -5186,6 +5190,7 @@ xmlParsePI(xmlParserCtxtPtr ctxt) { | ||
} | ||
count++; | ||
if (count > 50) { | ||
+ SHRINK; | ||
GROW; | ||
if (ctxt->instate == XML_PARSER_EOF) { | ||
xmlFree(buf); | ||
@@ -9783,6 +9788,7 @@ xmlParseCDSect(xmlParserCtxtPtr ctxt) { | ||
sl = l; | ||
count++; | ||
if (count > 50) { | ||
+ SHRINK; | ||
GROW; | ||
if (ctxt->instate == XML_PARSER_EOF) { | ||
xmlFree(buf); | ||
-- | ||
2.25.1 | ||
|