aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/snd_codec_wav.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/client/snd_codec_wav.c')
-rw-r--r--code/client/snd_codec_wav.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/client/snd_codec_wav.c b/code/client/snd_codec_wav.c
index a020841..c0b2e2e 100644
--- a/code/client/snd_codec_wav.c
+++ b/code/client/snd_codec_wav.c
@@ -255,7 +255,7 @@ snd_stream_t *S_WAV_CodecOpenStream(const char *filename)
// Read the RIFF header
if(!S_ReadRIFFHeader(rv->file, &rv->info))
{
- S_CodecUtilClose(rv);
+ S_CodecUtilClose(&rv);
return NULL;
}
@@ -269,7 +269,7 @@ S_WAV_CodecCloseStream
*/
void S_WAV_CodecCloseStream(snd_stream_t *stream)
{
- S_CodecUtilClose(stream);
+ S_CodecUtilClose(&stream);
}
/*