mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-23 00:35:36 +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) {
|
||||
return SoundIoErrorNoMem;
|
||||
}
|
||||
return SoundIoErrorNoMem;
|
||||
return SoundIoErrorOpeningDevice;
|
||||
}
|
||||
if ((err = from_lpwstr(rd.lpwstr, &rd.default_capture_id, &rd.default_capture_id_len))) {
|
||||
deinit_refresh_devices(&rd);
|
||||
|
|
Loading…
Reference in a new issue