aboutsummaryrefslogtreecommitdiff
path: root/ports/physfs/physfs.3.0.1.GetUserProfileDirectory.patch
diff options
context:
space:
mode:
authorPhil Christensen <philc@microsoft.com>2018-12-13 11:13:43 -0800
committerPhil Christensen <philc@microsoft.com>2018-12-13 11:13:43 -0800
commit5fc3a10651dc80201b4a870043a0cef6b3c72ff3 (patch)
tree22a3a9073a29a555540539f1c5f6c0f5360b506d /ports/physfs/physfs.3.0.1.GetUserProfileDirectory.patch
parent9e773bd912e42a413f87e9fb1a6712461e10c4bf (diff)
parente04b4ed5b5ff5c1b61e5ce3d70ac101ffe3237c4 (diff)
downloadvcpkg-5fc3a10651dc80201b4a870043a0cef6b3c72ff3.tar.gz
vcpkg-5fc3a10651dc80201b4a870043a0cef6b3c72ff3.zip
Merge branch 'master' of https://github.com/microsoft/vcpkg into dev/philc/4914
Diffstat (limited to 'ports/physfs/physfs.3.0.1.GetUserProfileDirectory.patch')
-rw-r--r--ports/physfs/physfs.3.0.1.GetUserProfileDirectory.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/ports/physfs/physfs.3.0.1.GetUserProfileDirectory.patch b/ports/physfs/physfs.3.0.1.GetUserProfileDirectory.patch
new file mode 100644
index 000000000..4338e52e5
--- /dev/null
+++ b/ports/physfs/physfs.3.0.1.GetUserProfileDirectory.patch
@@ -0,0 +1,25 @@
+
+diff -r a29fef4a20fd -r ece6769c0676 src/physfs_platform_windows.c
+--- a/src/physfs_platform_windows.c Wed May 16 19:54:51 2018 -0400
++++ b/src/physfs_platform_windows.c Wed Oct 03 22:40:57 2018 -0400
+@@ -566,7 +566,6 @@
+ else
+ {
+ DWORD psize = 0;
+- WCHAR dummy = 0;
+ LPWSTR wstr = NULL;
+ BOOL rc = 0;
+
+@@ -575,7 +574,7 @@
+ * psize. Also note that the second parameter can't be
+ * NULL or the function fails.
+ */
+- rc = pGetDir(accessToken, &dummy, &psize);
++ rc = pGetDir(accessToken, NULL, &psize);
+ GOTO_IF(rc, PHYSFS_ERR_OS_ERROR, done); /* should have failed! */
+
+ /* Allocate memory for the profile directory */
+
+
+
+