win-wasapi: Catch by reference
This commit is contained in:
parent
3b0238fc11
commit
00298fd4f1
@ -91,7 +91,7 @@ void GetWASAPIAudioDevices(vector<AudioDeviceInfo> &devices, bool input)
|
||||
try {
|
||||
GetWASAPIAudioDevices_(devices, input);
|
||||
|
||||
} catch (HRError error) {
|
||||
} catch (HRError &error) {
|
||||
blog(LOG_WARNING, "[GetWASAPIAudioDevices] %s: %lX", error.str,
|
||||
error.hr);
|
||||
}
|
||||
|
@ -319,7 +319,7 @@ bool WASAPISource::TryInitialize()
|
||||
try {
|
||||
Initialize();
|
||||
|
||||
} catch (HRError error) {
|
||||
} catch (HRError &error) {
|
||||
if (previouslyFailed)
|
||||
return active;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user