Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Patched to compile again on BeOS.
  • Loading branch information
icculus committed Jul 25, 2005
1 parent 823baad commit 7b41816
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -2,6 +2,7 @@
* CHANGELOG.
*/

07242005 - Patched to compile on BeOS.
07232005 - Fixed bug in zip archiver (thanks, J�rg Walter!).
More minor OS/2 tweaks. Updated zlib to 1.2.3, which properly
includes the security fix. Fixed "make dist" to handle .svn dirs
Expand Down
14 changes: 7 additions & 7 deletions platform/beos.cpp
Expand Up @@ -72,7 +72,7 @@ static char *getMountPoint(const char *devname)
BAIL_IF_MACRO(rc < B_OK, strerror(rc), NULL);
const char *str = path.Path();
BAIL_IF_MACRO(str == NULL, ERR_OS_ERROR, NULL); /* ?! */
char *retval = (char *) malloc(strlen(str) + 1);
char *retval = (char *) allocator.Malloc(strlen(str) + 1);
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
strcpy(retval, str);
return(retval);
Expand Down Expand Up @@ -135,7 +135,7 @@ static void tryDir(const char *d, PHYSFS_StringCallback callback, void *data)
if (mntpnt != NULL)
{
callback(data, mntpnt);
free(mntpnt); /* !!! FIXME: lose this malloc! */
allocator.Free(mntpnt); /* !!! FIXME: lose this malloc! */
} /* if */
} /* if */
} /* if */
Expand Down Expand Up @@ -178,7 +178,7 @@ char *__PHYSFS_platformCalcBaseDir(const char *argv0)
assert(rc == B_OK);
const char *str = path.Path();
assert(str != NULL);
char *retval = (char *) malloc(strlen(str) + 1);
char *retval = (char *) allocator.Malloc(strlen(str) + 1);
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
strcpy(retval, str);
return(retval);
Expand Down Expand Up @@ -210,7 +210,7 @@ char *__PHYSFS_platformRealPath(const char *path)
BPath normalized(str, leaf, true); /* force normalization of path. */
const char *resolved_path = normalized.Path();
BAIL_IF_MACRO(resolved_path == NULL, ERR_NO_SUCH_FILE, NULL);
char *retval = (char *) malloc(strlen(resolved_path) + 1);
char *retval = (char *) allocator.Malloc(strlen(resolved_path) + 1);
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
strcpy(retval, resolved_path);
return(retval);
Expand All @@ -219,14 +219,14 @@ char *__PHYSFS_platformRealPath(const char *path)

void *__PHYSFS_platformCreateMutex(void)
{
sem_id *retval = (sem_id *) malloc(sizeof (sem_id));
sem_id *retval = (sem_id *) allocator.Malloc(sizeof (sem_id));
sem_id rc;

BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
rc = create_sem(1, "PhysicsFS semaphore");
if (rc < B_OK)
{
free(retval);
allocator.Free(retval);
BAIL_MACRO(strerror(rc), NULL);
} // if

Expand All @@ -238,7 +238,7 @@ void *__PHYSFS_platformCreateMutex(void)
void __PHYSFS_platformDestroyMutex(void *mutex)
{
delete_sem( *((sem_id *) mutex) );
free(mutex);
allocator.Free(mutex);
} /* __PHYSFS_platformDestroyMutex */


Expand Down

0 comments on commit 7b41816

Please sign in to comment.