diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-08-17 20:16:28 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-08-17 20:16:28 +0000 |
commit | be098238e3250fcba4ba0f7019243c8e254b1c95 (patch) | |
tree | eecfa95a84bc4913a87e363aac095b954b683f94 /dev-libs/expat/files | |
parent | stable x86, bug 279401 (diff) | |
download | historical-be098238e3250fcba4ba0f7019243c8e254b1c95.tar.gz historical-be098238e3250fcba4ba0f7019243c8e254b1c95.tar.bz2 historical-be098238e3250fcba4ba0f7019243c8e254b1c95.zip |
Add patch for upstream bug #1990430.
Package-Manager: portage-14076-svn/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/expat/files')
-rw-r--r-- | dev-libs/expat/files/expat-2.0.1-fix_bug_1990430.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dev-libs/expat/files/expat-2.0.1-fix_bug_1990430.patch b/dev-libs/expat/files/expat-2.0.1-fix_bug_1990430.patch new file mode 100644 index 000000000000..17dc166a6956 --- /dev/null +++ b/dev-libs/expat/files/expat-2.0.1-fix_bug_1990430.patch @@ -0,0 +1,14 @@ +http://expat.cvs.sourceforge.net/viewvc/expat/expat/lib/xmltok_impl.c?view=log (1.13 -> 1.15) +http://svn.python.org/view?view=rev&revision=74429 + +--- lib/xmltok_impl.c ++++ lib/xmltok_impl.c +@@ -1744,7 +1744,7 @@ + const char *end, + POSITION *pos) + { +- while (ptr != end) { ++ while (ptr < end) { + switch (BYTE_TYPE(enc, ptr)) { + #define LEAD_CASE(n) \ + case BT_LEAD ## n: \ |