# HG changeset patch # User Ryan C. Gordon # Date 1020060183 0 # Node ID 8195b86207bbd011696b886974c05c8894fc1910 # Parent 4a2cd7d4aa0690c7e9db679f76b0f1b4df73214d Mac fixes, and removed all alloca() calls. diff -r 4a2cd7d4aa06 -r 8195b86207bb playsound/playsound.c --- a/playsound/playsound.c Mon Apr 29 06:02:34 2002 +0000 +++ b/playsound/playsound.c Mon Apr 29 06:03:03 2002 +0000 @@ -34,7 +34,6 @@ #include "SDL_sound.h" #if SUPPORT_PHYSFS -#include #include "physfs.h" #include "physfsrwops.h" #endif @@ -188,9 +187,15 @@ { SDL_RWops *retval = NULL; - char *path = (char *) alloca(strlen(filename) + 1); + char *path = (char *) malloc(strlen(filename) + 1); char *archive; + if (path == NULL) + { + fprintf(stderr, "Out of memory!\n"); + return(NULL); + } /* if */ + strcpy(path, filename); archive = strchr(path, '@'); if (archive != NULL) @@ -200,12 +205,14 @@ { fprintf(stderr, "Couldn't open archive: %s\n", PHYSFS_getLastError()); + free(path); return(NULL); } /* if */ retval = PHYSFSRWOPS_openRead(path); } /* if */ + free(path); return(retval); } /* rwops_from_physfs */ #endif @@ -215,11 +222,13 @@ Sound_AudioInfo *desired, Uint32 decode_buffersize) { + Sound_Sample *retval = NULL; + #if SUPPORT_PHYSFS SDL_RWops *rw = rwops_from_physfs(fname); if (rw != NULL) { - char *path = (char *) alloca(strlen(fname) + 1); + char *path = (char *) malloc(strlen(fname) + 1); char *ptr; strcpy(path, fname); ptr = strchr(path, '@'); @@ -228,11 +237,12 @@ if (ptr != NULL) ptr++; - return(Sound_NewSample(rw, ptr, desired, decode_buffersize)); + retval = Sound_NewSample(rw, ptr, desired, decode_buffersize); + free(path); } /* if */ #endif - return(NULL); + return(retval); } /* sample_from_archive */ @@ -560,10 +570,12 @@ static void parse_seek_list(const char *_list) { Uint32 i; - char *list = alloca(strlen(_list) + 1); + + char *list = (char*) malloc(strlen(_list) + 1); + char *save_list = list; if (list == NULL) { - fprintf(stderr, "alloca() failed. Skipping seek list.\n"); + fprintf(stderr, "malloc() failed. Skipping seek list.\n"); return; } /* if */ @@ -589,6 +601,8 @@ seek_list[i] = parse_time_str(list); list = ptr + 1; } /* for */ + + free(save_list); } /* parse_seek_list */ @@ -920,6 +934,27 @@ } /* if */ SDL_PauseAudio(0); +#if ENABLE_EVENTS + { + SDL_Surface *screen; + SDL_Event event; + + screen = SDL_SetVideoMode (320, 240, 8, 0); + + while (!done_flag) { + + SDL_Delay(1); + SDL_PollEvent (&event); + + if (event.type == SDL_KEYDOWN) { + + done_flag = 1; + break; + } + + } + } +#endif /* ENABLE_EVENTS */ while (!done_flag) { SDL_Delay(10);