From fa24963ceff0563f59ed363049861216f624058f Mon Sep 17 00:00:00 2001 From: MAN-AT-ARMS Date: Tue, 9 Sep 2014 11:30:23 -0400 Subject: Fix possible division by zero in S_PaintChannelFrom16_altivec --- src/client/snd_mix.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/client') diff --git a/src/client/snd_mix.c b/src/client/snd_mix.c index 56ef7185..6671fc47 100644 --- a/src/client/snd_mix.c +++ b/src/client/snd_mix.c @@ -237,6 +237,10 @@ static void S_PaintChannelFrom16_altivec( channel_t *ch, const sfx_t *sc, int co short *samples; float ooff, fdata[2], fdiv, fleftvol, frightvol; + if (sc->soundChannels <= 0) { + return; + } + samp = &paintbuffer[ bufferOffset ]; if (ch->doppler) { -- cgit