diff options
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r-- | OpenAL32/alSource.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 746ec821..4cafe190 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -65,22 +65,22 @@ ALAPI ALvoid ALAPIENTRY alGenSources(ALsizei n,ALuint *sources) while(i < n) { *list = calloc(1, sizeof(ALsource)); - if(*list) + if(!(*list)) { - sources[i]=(ALuint)ALTHUNK_ADDENTRY(*list); - (*list)->source = sources[i]; + alDeleteSources(i, sources); + alSetError(AL_OUT_OF_MEMORY); + break; + } - InitSourceParams(*list); - Context->SourceCount++; - i++; + sources[i] = (ALuint)ALTHUNK_ADDENTRY(*list); + (*list)->source = sources[i]; - list = &(*list)->next; - } - } + InitSourceParams(*list); + Context->SourceCount++; + i++; - // If we didn't create all the Sources, we must have run out or memory - if(i != n) - alSetError(AL_OUT_OF_MEMORY); + list = &(*list)->next; + } } else { |