Mercurial > sdl-ios-xcode
changeset 2196:2aee80dab68a
Reverted r3255:3256. Don't actually need it unless the build is broken. :)
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sat, 14 Jul 2007 07:05:19 +0000 |
parents | 46e373b27d6d |
children | 2ff40f30af31 |
files | src/stdlib/SDL_malloc.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/stdlib/SDL_malloc.c Sat Jul 14 07:03:07 2007 +0000 +++ b/src/stdlib/SDL_malloc.c Sat Jul 14 07:05:19 2007 +0000 @@ -610,6 +610,7 @@ #endif /* MALLINFO_FIELD_TYPE */ #define memset SDL_memset +#define memcpy SDL_memcpy #define malloc SDL_malloc #define calloc SDL_calloc #define realloc SDL_realloc @@ -3912,7 +3913,7 @@ void *newmem = internal_malloc(m, bytes); if (newmem != 0) { size_t oc = oldsize - overhead_for(oldp); - SDL_memcpy(newmem, oldmem, (oc < bytes) ? oc : bytes); + memcpy(newmem, oldmem, (oc < bytes) ? oc : bytes); internal_free(m, oldmem); } return newmem;