diff options
author | 2009-08-17 20:16:28 +0000 | |
---|---|---|
committer | 2009-08-17 20:16:28 +0000 | |
commit | def3d5433474a390db32576ee80dd0bd0208ba8f (patch) | |
tree | e6406dff948e9c58ec4cfba89e0b1ec1afb6effb /dev-libs/expat/files | |
parent | stable x86, bug 279401 (diff) | |
download | gentoo-2-def3d5433474a390db32576ee80dd0bd0208ba8f.tar.gz gentoo-2-def3d5433474a390db32576ee80dd0bd0208ba8f.tar.bz2 gentoo-2-def3d5433474a390db32576ee80dd0bd0208ba8f.zip |
Add patch for upstream bug #1990430.
(Portage version: 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: \ |