Reports trouble setting the write dir in PHYSFS_setSaneConfig().

This commit is contained in:
Ryan C. Gordon 2002-03-15 14:53:23 +00:00
parent 81bac7781f
commit cd58c9e523
1 changed files with 14 additions and 5 deletions

View File

@ -652,17 +652,26 @@ int PHYSFS_setSaneConfig(const char *organization, const char *appName,
if (!PHYSFS_setWriteDir(str)) if (!PHYSFS_setWriteDir(str))
{ {
int no_write = 0;
sprintf(str, ".%s/%s", organization, appName);
if ( (PHYSFS_setWriteDir(userdir)) && if ( (PHYSFS_setWriteDir(userdir)) &&
(PHYSFS_mkdir(str + strlen(userdir))) ) (PHYSFS_mkdir(str)) )
{ {
PHYSFS_setWriteDir(str); sprintf(str, "%s.%s%s%s", userdir, organization, dirsep, appName);
if (!PHYSFS_setWriteDir(str))
no_write = 1;
} /* if */ } /* if */
else else
{ {
PHYSFS_setWriteDir(NULL); no_write = 1;
free(str);
BAIL_IF_MACRO(1, ERR_CANT_SET_WRITE_DIR, 0);
} /* else */ } /* else */
if (no_write)
{
PHYSFS_setWriteDir(NULL); /* just in case. */
free(str);
BAIL_MACRO(ERR_CANT_SET_WRITE_DIR, 0);
} /* if */
} /* if */ } /* if */
/* Put write dir first in search path... */ /* Put write dir first in search path... */