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

Unified Diff: third_party/libxml/patches/LoadLibraryA

Issue 1193533007: Upgrade to libxml 2.9.2 and libxslt 1.1.28 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no iconv Created 5 years, 6 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libxml/mac/include/libxml/xmlversion.h ('k') | third_party/libxml/patches/bug_651202 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libxml/patches/LoadLibraryA
diff --git a/third_party/libxml/patches/LoadLibraryA b/third_party/libxml/patches/LoadLibraryA
deleted file mode 100644
index 89fff15c86c4cb429de4c5985c4c66c19a15ba37..0000000000000000000000000000000000000000
--- a/third_party/libxml/patches/LoadLibraryA
+++ /dev/null
@@ -1,16 +0,0 @@
-Change 'LoadLibrary' to 'LoadLibraryA' (used with 'const char*' as an
-argument)
-
-Index: libxml/xmlmodule.c
-===================================================================
---- libxml.orig/xmlmodule.c 2010-07-09 14:17:46.959288280 -0700
-+++ libxml/xmlmodule.c 2010-07-09 14:17:55.419051003 -0700
-@@ -300,7 +300,7 @@
- static void *
- xmlModulePlatformOpen(const char *name)
- {
-- return LoadLibrary(name);
-+ return LoadLibraryA(name);
- }
-
- /*
« no previous file with comments | « third_party/libxml/mac/include/libxml/xmlversion.h ('k') | third_party/libxml/patches/bug_651202 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698