From 587cd82013c6a2dd80da5ba90efde0eb442bc3a1 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Sun, 16 Oct 2011 19:16:41 +0200 Subject: [PATCH] dsound: Remove dead code from mixer (Coverity). --- dlls/dsound/mixer.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dlls/dsound/mixer.c b/dlls/dsound/mixer.c index 8adbdff6d1d..b1925d5a6ff 100644 --- a/dlls/dsound/mixer.c +++ b/dlls/dsound/mixer.c @@ -934,11 +934,6 @@ static void DSOUND_PerformMix(DirectSoundDevice *device) size2 = 0; FillMemory(device->mix_buffer + mixplaypos, mixplaypos2 - mixplaypos, 0); FillMemory(buf1, size1, nfiller); - if (buf2 && size2) - { - FIXME("%d: There should be no additional buffer here!!\n", __LINE__); - FillMemory(buf2, size2, nfiller); - } } device->playpos = playpos; -- 2.11.4.GIT