mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2025-01-09 00:55:38 +00:00
Fix incorrectly returning the same error in multiple error cases
This commit is contained in:
parent
29555645eb
commit
eef66c5d34
|
@ -718,7 +718,7 @@ static int refresh_devices(struct SoundIoPrivate *si) {
|
||||||
if(hr == E_OUTOFMEMORY) {
|
if(hr == E_OUTOFMEMORY) {
|
||||||
return SoundIoErrorNoMem;
|
return SoundIoErrorNoMem;
|
||||||
}
|
}
|
||||||
return SoundIoErrorNoMem;
|
return SoundIoErrorOpeningDevice;
|
||||||
}
|
}
|
||||||
if ((err = from_lpwstr(rd.lpwstr, &rd.default_capture_id, &rd.default_capture_id_len))) {
|
if ((err = from_lpwstr(rd.lpwstr, &rd.default_capture_id, &rd.default_capture_id_len))) {
|
||||||
deinit_refresh_devices(&rd);
|
deinit_refresh_devices(&rd);
|
||||||
|
|
Loading…
Reference in a new issue