Fixed bug 2205 - SDL_GetAudioDeviceName returns default-device name on invalid index for default-device only drivers
norfanin The audio_enumerateAndNameAudioDevicesNegativeTests test in testautomation_audio.c reports a failure for SDL_GetAudioDeviceName when called on a driver that has only the default device. SDL_GetNumAudioDevices reports 1, but SDL_GetAudioDeviceName does not check if the index passed by the caller is in that range in this case. For positive numbers anyway. This can be reproduced with the dummy driver on Windows and Linux.main
parent
aaa4165b9f
commit
517886a7f1
|
@ -722,10 +722,16 @@ SDL_GetAudioDeviceName(int index, int iscapture)
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((iscapture) && (current_audio.impl.OnlyHasDefaultInputDevice)) {
|
if ((iscapture) && (current_audio.impl.OnlyHasDefaultInputDevice)) {
|
||||||
|
if (index > 0) {
|
||||||
|
goto no_such_device;
|
||||||
|
}
|
||||||
return DEFAULT_INPUT_DEVNAME;
|
return DEFAULT_INPUT_DEVNAME;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!iscapture) && (current_audio.impl.OnlyHasDefaultOutputDevice)) {
|
if ((!iscapture) && (current_audio.impl.OnlyHasDefaultOutputDevice)) {
|
||||||
|
if (index > 0) {
|
||||||
|
goto no_such_device;
|
||||||
|
}
|
||||||
return DEFAULT_OUTPUT_DEVNAME;
|
return DEFAULT_OUTPUT_DEVNAME;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue