ソースを参照

Fixed Win10's GetUserProfileDirectory() bug in stable-1.0 branch.

Ryan C. Gordon 7 年 前
コミット
15073ad63f
1 ファイル変更1 行追加2 行削除
  1. 1 2
      platform/win32.c

+ 1 - 2
platform/win32.c

@@ -185,7 +185,6 @@ static char *getExePath(const char *argv0)
 static int determineUserDir(void)
 {
     DWORD psize = 0;
-    char dummy[1];
     BOOL rc = 0;
     HANDLE processHandle;            /* Current process handle */
     HANDLE accessToken = NULL;       /* Security handle to process */
@@ -217,7 +216,7 @@ static int determineUserDir(void)
                  *  psize. Also note that the second parameter can't be
                  *  NULL or the function fails.
                  */
-                rc = GetUserProfileDirectory(accessToken, dummy, &psize);
+                rc = GetUserProfileDirectory(accessToken, NULL, &psize);
                 assert(!rc);  /* success?! */
 
                 /* Allocate memory for the profile directory */