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

Side by Side Diff: third_party/libxslt/chromium/get-file-attributes-a.patch

Issue 2865973002: Check in the libxslt roll script. (Closed)
Patch Set: Consistent quotes. Created 3 years, 7 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
« no previous file with comments | « third_party/libxslt/aclocal.m4 ('k') | third_party/libxslt/chromium/roll.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 diff --git a/src/libxslt/security.c b/src/libxslt/security.c
2 index 89de90bd3f1e..965175f79ca4 100644
3 --- src/libxslt/security.c
4 +++ src/libxslt/security.c
5 @@ -282,7 +282,7 @@ xsltCheckFilename (const char *path)
6 #if defined(WIN32) && !defined(__CYGWIN__)
7 DWORD dwAttrs;
8
9 - dwAttrs = GetFileAttributes(path);
10 + dwAttrs = GetFileAttributesA(path);
11 if (dwAttrs != INVALID_FILE_ATTRIBUTES) {
12 if (dwAttrs & FILE_ATTRIBUTE_DIRECTORY) {
13 return 2;
OLDNEW
« no previous file with comments | « third_party/libxslt/aclocal.m4 ('k') | third_party/libxslt/chromium/roll.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698