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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 Change 'LoadLibrary' to 'LoadLibraryA' (used with 'const char*' as an
2 argument)
3
4 Index: libxml/xmlmodule.c
5 ===================================================================
6 --- libxml.orig/xmlmodule.c 2010-07-09 14:17:46.959288280 -0700
7 +++ libxml/xmlmodule.c 2010-07-09 14:17:55.419051003 -0700
8 @@ -300,7 +300,7 @@
9 static void *
10 xmlModulePlatformOpen(const char *name)
11 {
12 - return LoadLibrary(name);
13 + return LoadLibraryA(name);
14 }
15
16 /*
OLDNEW
« 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