* Fix bug where an extraneous render command can cause a crash when

recording video
* Make S_CodecUtilClose NULL the snd_stream_t pointer
* Fix indentation in runtime SDL check code
This commit is contained in:
Tim Angus 2007-11-18 01:06:46 +00:00
parent 3f3c827bcd
commit b62950ca6e
6 changed files with 25 additions and 22 deletions

View file

@ -226,8 +226,9 @@ snd_stream_t *S_CodecUtilOpen(const char *filename, snd_codec_t *codec)
S_CodecUtilClose
=================
*/
void S_CodecUtilClose(snd_stream_t *stream)
void S_CodecUtilClose(snd_stream_t **stream)
{
FS_FCloseFile(stream->file);
Z_Free(stream);
FS_FCloseFile((*stream)->file);
Z_Free(*stream);
*stream = NULL;
}