Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Attempts to calculate basedir with GetModuleFileName() first, and made a
 CygWin fix (_MAX_PATH becomes MAX_PATH).
  • Loading branch information
icculus committed Aug 29, 2001
1 parent af9dd7b commit 9effae3
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions platform/win32.c
Expand Up @@ -79,10 +79,31 @@ char *__PHYSFS_platformCalcBaseDir(const char *argv0)
if (strchr(argv0, '\\') != NULL) /* default behaviour can handle this. */
return(NULL);

retval = (char *) malloc(sizeof (TCHAR) * (MAX_PATH + 1));
buflen = GetModuleFileName(NULL, retval, MAX_PATH + 1);
retval[buflen] = '\0'; /* does API always null-terminate the string? */

/* make sure the string was not truncated. */
if (__PHYSFS_platformStricmp(&retval[buflen - 4], ".exe") == 0)
{
char *ptr = strrchr(retval, '\\');
if (ptr != NULL)
{
*(ptr + 1) = '\0'; /* chop off filename. */

/* free up the bytes we didn't actually use. */
retval = (char *) realloc(retval, strlen(retval) + 1);
if (retval != NULL)
return(retval);
} /* if */
} /* if */

/* if any part of the previous approach failed, try SearchPath()... */
buflen = SearchPath(NULL, argv0, NULL, buflen, NULL, NULL);
retval = (char *) malloc(buflen);
retval = (char *) realloc(retval, buflen);
BAIL_IF_MACRO(!retval, ERR_OUT_OF_MEMORY, NULL);
SearchPath(NULL, argv0, NULL, buflen, retval, &filepart);

return(retval);
} /* __PHYSFS_platformCalcBaseDir */

Expand Down Expand Up @@ -308,7 +329,7 @@ char *__PHYSFS_platformCurrentDir(void)
char *__PHYSFS_platformRealPath(const char *path)
{
/* !!! FIXME: This isn't supported on CygWin! */
return(_fullpath(NULL, path, _MAX_PATH));
return(_fullpath(NULL, path, MAX_PATH));
} /* __PHYSFS_platformRealPath */


Expand Down

0 comments on commit 9effae3

Please sign in to comment.