summaryrefslogtreecommitdiff
path: root/chromium/third_party/libxml/src/include/libxml/c14n.h
diff options
context:
space:
mode:
authorMichael BrĂ¼ning <michael.bruning@qt.io>2023-05-04 13:15:21 +0200
committerMichael BrĂ¼ning <michael.bruning@qt.io>2023-05-05 07:37:00 +0000
commitb3010ad699b05b928359e7bd27cc623f789b6f12 (patch)
tree8dd9dcde540eff80f4530037ec1ab7d2b7338ef6 /chromium/third_party/libxml/src/include/libxml/c14n.h
parent49fb5fe113f79575614e5dd183e05222c7749c75 (diff)
downloadqtwebengine-chromium-b3010ad699b05b928359e7bd27cc623f789b6f12.tar.gz
[Backport] CVE-2023-29469 / Security bug 1433328
Manual roll of libxml to include cherry-picked security fix. Originally reviewed on: https://chromium-review.googlesource.com/c/chromium/src/+/4457227 Change-Id: If4241792fd07d82d57ecd4b82b928f070a1c43e0 Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/475993 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'chromium/third_party/libxml/src/include/libxml/c14n.h')
-rw-r--r--chromium/third_party/libxml/src/include/libxml/c14n.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/libxml/src/include/libxml/c14n.h b/chromium/third_party/libxml/src/include/libxml/c14n.h
index af93de63a4c..51e541996a5 100644
--- a/chromium/third_party/libxml/src/include/libxml/c14n.h
+++ b/chromium/third_party/libxml/src/include/libxml/c14n.h
@@ -66,7 +66,7 @@ typedef enum {
XML_C14N_1_1 = 2 /* C14N 1.1 spec */
} xmlC14NMode;
-XMLPUBFUN int XMLCALL
+XMLPUBFUN int
xmlC14NDocSaveTo (xmlDocPtr doc,
xmlNodeSetPtr nodes,
int mode, /* a xmlC14NMode */
@@ -74,7 +74,7 @@ XMLPUBFUN int XMLCALL
int with_comments,
xmlOutputBufferPtr buf);
-XMLPUBFUN int XMLCALL
+XMLPUBFUN int
xmlC14NDocDumpMemory (xmlDocPtr doc,
xmlNodeSetPtr nodes,
int mode, /* a xmlC14NMode */
@@ -82,7 +82,7 @@ XMLPUBFUN int XMLCALL
int with_comments,
xmlChar **doc_txt_ptr);
-XMLPUBFUN int XMLCALL
+XMLPUBFUN int
xmlC14NDocSave (xmlDocPtr doc,
xmlNodeSetPtr nodes,
int mode, /* a xmlC14NMode */
@@ -109,7 +109,7 @@ typedef int (*xmlC14NIsVisibleCallback) (void* user_data,
xmlNodePtr node,
xmlNodePtr parent);
-XMLPUBFUN int XMLCALL
+XMLPUBFUN int
xmlC14NExecute (xmlDocPtr doc,
xmlC14NIsVisibleCallback is_visible_callback,
void* user_data,