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

Side by Side Diff: third_party/libxml/patches/LoadLibraryA

Issue 2951008: Update libxml to 2.7.7. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 5 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

Powered by Google App Engine
This is Rietveld 408576698