As reported on the mailing list, the OpenAL music processing causes under
certain circumstances on MacOS X ppc.
It happens when a call to qalBufferData() fails causesing qalGetError() to
return AL_INVALID_OPERATION, yet still adding NULL to the queue. The next
time qalSourceUnqueueBuffer() is called it pulls the NULL value and tries
to process it causing the crash.
The real fix would be to find out exactly why qalBufferData() is failing, but
this patch provides a bandaid fix to check that the unqueued value is not
NULL before processing it.
Just an update in case anyone else is working on this, it happens on both intel and ppc and seems to be related to a the background music loop when there are a lot of other game sounds being processed.
The attached patch is worthless.
This should no longer cause crashing after revision 832.
However, it will still print out a big red ERROR: whenever qalBufferData() fails on processing background music. This seems to happen at seemingly random times with Apple's OpenAL implementation. It's starting to look like this bug might belong to Apple's OpenAL.
Setting a QA contact on all ioquake3 bugs, even resolved ones. Sorry if you get a flood of email from this, it should only happen once. Apologies for the incovenience.
--ryan.
Created attachment 937 [details] check value from qalSourceUnqueueBuffers()