windows: Don't let Visual Studio insert an implicit dependency on memset().

Fixes Bugzilla #4662.
This commit is contained in:
Ryan C. Gordon 2019-06-11 02:08:31 -04:00
parent 399df540e3
commit 254eb67775

View File

@ -1039,7 +1039,7 @@ IMA_ADPCM_Decode(WaveFile *file, Uint8 **audio_buf, Uint32 *audio_len)
int result;
size_t bytesleft, outputsize;
WaveChunk *chunk = &file->chunk;
ADPCM_DecoderState state = {0};
ADPCM_DecoderState state;
Sint8 *cstate;
if (chunk->size != chunk->length) {
@ -1056,6 +1056,7 @@ IMA_ADPCM_Decode(WaveFile *file, Uint8 **audio_buf, Uint32 *audio_len)
return 0;
}
SDL_zero(state);
state.channels = file->format.channels;
state.blocksize = file->format.blockalign;
state.blockheadersize = (size_t)state.channels * 4;