diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index 60eb48134..d937c5af4 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -1162,6 +1162,7 @@ open_audio_device(const char *devname, int iscapture, if (device->spec.size > stream_len) { stream_len = device->spec.size; } + SDL_assert(stream_len > 0); device->fake_stream = (Uint8 *)SDL_AllocAudioMem(stream_len); if (device->fake_stream == NULL) { close_audio_device(device);