Fix #13276: Crash in SDL_GetAudioDeviceChannelMap

(cherry picked from commit de6a23028a)
This commit is contained in:
Paul Vick
2025-06-24 22:26:14 -07:00
committed by Sam Lantinga
parent 3e0ce51067
commit 554bee6aae

View File

@@ -1575,7 +1575,9 @@ int *SDL_GetAudioDeviceChannelMap(SDL_AudioDeviceID devid, int *count)
SDL_AudioDevice *device = ObtainPhysicalAudioDeviceDefaultAllowed(devid);
if (device) {
channels = device->spec.channels;
result = SDL_ChannelMapDup(device->chmap, channels);
if (channels > 0 && device->chmap) {
result = SDL_ChannelMapDup(device->chmap, channels);
}
}
ReleaseAudioDevice(device);