__PHYSFS_platformDeinit() should return void.

What are you going to do if this fails, anyhow?
This commit is contained in:
Ryan C. Gordon 2017-08-06 01:30:58 -04:00
parent 248167af40
commit 61bdee4d78
7 changed files with 10 additions and 17 deletions

View File

@ -1362,8 +1362,7 @@ static int doDeinit(void)
errorLock = stateLock = NULL;
/* !!! FIXME: what on earth are you supposed to do if this fails? */
BAIL_IF_ERRPASS(!__PHYSFS_platformDeinit(), 0);
__PHYSFS_platformDeinit();
return 1;
} /* doDeinit */

View File

@ -431,11 +431,8 @@ int __PHYSFS_platformInit(void);
* Deinitialize the platform. This is called when PHYSFS_deinit() is called
* from the application. You can use this to clean up anything you've
* allocated in your platform driver.
*
* Return zero if there was a catastrophic failure (which prevents you from
* functioning at all), and non-zero otherwise.
*/
int __PHYSFS_platformDeinit(void);
void __PHYSFS_platformDeinit(void);
/*

View File

@ -32,9 +32,9 @@ int __PHYSFS_platformInit(void)
} /* __PHYSFS_platformInit */
int __PHYSFS_platformDeinit(void)
void __PHYSFS_platformDeinit(void)
{
return 1; /* always succeed. */
/* no-op */
} /* __PHYSFS_platformDeinit */

View File

@ -27,9 +27,9 @@ int __PHYSFS_platformInit(void)
} /* __PHYSFS_platformInit */
int __PHYSFS_platformDeinit(void)
void __PHYSFS_platformDeinit(void)
{
return 1; /* always succeed. */
/* no-op */
} /* __PHYSFS_platformDeinit */

View File

@ -271,7 +271,7 @@ int __PHYSFS_platformInit(void)
} /* __PHYSFS_platformInit */
int __PHYSFS_platformDeinit(void)
void __PHYSFS_platformDeinit(void)
{
if (uconvdll)
{
@ -280,8 +280,6 @@ int __PHYSFS_platformDeinit(void)
DosFreeModule(uconvdll);
uconvdll = 0;
} /* if */
return 1; /* success. */
} /* __PHYSFS_platformDeinit */

View File

@ -65,9 +65,9 @@ int __PHYSFS_platformInit(void)
} /* __PHYSFS_platformInit */
int __PHYSFS_platformDeinit(void)
void __PHYSFS_platformDeinit(void)
{
return 1; /* always succeed. */
/* no-op */
} /* __PHYSFS_platformDeinit */

View File

@ -612,10 +612,9 @@ int __PHYSFS_platformInit(void)
} /* __PHYSFS_platformInit */
int __PHYSFS_platformDeinit(void)
void __PHYSFS_platformDeinit(void)
{
deinitCDThread();
return 1; /* It's all good */
} /* __PHYSFS_platformDeinit */