Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Side by Side Diff: third_party/libxml/README.chromium

Issue 11410039: Merge 164867 - Add a check to prevent len from going negative in xmlParseAttValueComplex. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1271/src/
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | third_party/libxml/src/parser.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Name: libxml 1 Name: libxml
2 URL: http://xmlsoft.org 2 URL: http://xmlsoft.org
3 Version: 2.7.7 3 Version: 2.7.7
4 License: MIT 4 License: MIT
5 License File: src/Copyright 5 License File: src/Copyright
6 Security Critical: yes 6 Security Critical: yes
7 7
8 Description: 8 Description:
9 The src/ directory contains a partial snapshot of the libxml library 9 The src/ directory contains a partial snapshot of the libxml library
10 with the patches in the patches/ directories applied. 10 with the patches in the patches/ directories applied.
(...skipping 13 matching lines...) Expand all
24 - Add fix for entities, commit upstream is http://git.gnome.org/browse/libxml2/c ommit/?id=5bd3c061823a8499b27422aee04ea20aae24f03e 24 - Add fix for entities, commit upstream is http://git.gnome.org/browse/libxml2/c ommit/?id=5bd3c061823a8499b27422aee04ea20aae24f03e
25 - Import UTF-8 fix from upstream: http://git.gnome.org/browse/libxml2/commit/?id =0795348aeb86648723bc391e4d02e20631c10bca 25 - Import UTF-8 fix from upstream: http://git.gnome.org/browse/libxml2/commit/?id =0795348aeb86648723bc391e4d02e20631c10bca
26 - Import XPath fix http://git.gnome.org/browse/libxml2/commit/xpath.c?id=2ddecc2 3862bab1a9a9e51e097aefc92ec305e28 26 - Import XPath fix http://git.gnome.org/browse/libxml2/commit/xpath.c?id=2ddecc2 3862bab1a9a9e51e097aefc92ec305e28
27 - Merge clang warning fix http://git.gnome.org/browse/libxml2/commit/?id=aae48e6 4dfbf2b46b157a4c1857e30645116388f 27 - Merge clang warning fix http://git.gnome.org/browse/libxml2/commit/?id=aae48e6 4dfbf2b46b157a4c1857e30645116388f
28 - Add a fix for proper escaping of xpointer expressions, commit upstream is pend ing. 28 - Add a fix for proper escaping of xpointer expressions, commit upstream is pend ing.
29 - Add helper classes in chromium/libxml_utils.cc and chromium/include/libxml/lib xml_utils.h. 29 - Add helper classes in chromium/libxml_utils.cc and chromium/include/libxml/lib xml_utils.h.
30 - Add a tweak to limit problems caused by excessive strings and buffers. 30 - Add a tweak to limit problems caused by excessive strings and buffers.
31 - Change the xmlNs struct a little bit, so it looks like it has no children 31 - Change the xmlNs struct a little bit, so it looks like it has no children
32 if treated as a generic xmlNode object. 32 if treated as a generic xmlNode object.
33 - Fix pretty harmless use-after-free in generate-id function. 33 - Fix pretty harmless use-after-free in generate-id function.
34 - Import attribute normalization fix http://git.gnome.org/browse/libxml2/commit/ ?id=6a36fbe3b3e001a8a840b5c1fdd81cefc9947f0d
34 35
35 To import a new snapshot of libxml: 36 To import a new snapshot of libxml:
36 37
37 - Visit http://xmlsoft.org/downloads.html and download the latest source 38 - Visit http://xmlsoft.org/downloads.html and download the latest source
38 distribution. 39 distribution.
39 - Copy the files into this directory, omitting files which have been omitted 40 - Copy the files into this directory, omitting files which have been omitted
40 here. E.g.: for i in $(find . -type f); do cp ../libxml-newver/$i $i; done 41 here. E.g.: for i in $(find . -type f); do cp ../libxml-newver/$i $i; done
41 This should clobber all local changes to this directory. 42 This should clobber all local changes to this directory.
42 - Apply the patches in patches/ and fix any problems. 43 - Apply the patches in patches/ and fix any problems.
43 UPDATE THOSE PATCHES OR EVAN WILL HUNT YOU DOWN. 44 UPDATE THOSE PATCHES OR EVAN WILL HUNT YOU DOWN.
44 - On a Linux system, 45 - On a Linux system,
45 $ cd linux 46 $ cd linux
46 $ ../configure --without-iconv --without-ftp --without-http 47 $ ../configure --without-iconv --without-ftp --without-http
47 to generate config.h and include/libxml/xmlversion.h for Linux. 48 to generate config.h and include/libxml/xmlversion.h for Linux.
48 - On a Mac, 49 - On a Mac,
49 $ cd mac 50 $ cd mac
50 $ ../configure --without-iconv --without-ftp --without-http 51 $ ../configure --without-iconv --without-ftp --without-http
51 to generate config.h and include/libxml/xmlversion.h for Macs. 52 to generate config.h and include/libxml/xmlversion.h for Macs.
52 - On Windows, run build/generate-win32-headers.bat to re-generate config.h and 53 - On Windows, run build/generate-win32-headers.bat to re-generate config.h and
53 include/libxml/xmlversion.h for Windows builds. 54 include/libxml/xmlversion.h for Windows builds.
54 - Update this README to reflect the new version number. 55 - Update this README to reflect the new version number.
OLDNEW
« no previous file with comments | « no previous file | third_party/libxml/src/parser.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698