This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Fix RtAudio crash when alsa soundcard is listed but not available
Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.1-alpha2
falkTX
5 years ago
parent
b1f2a5b1b1
commit
51f5bf7059
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
source/modules/rtaudio/RtAudio.cpp
+ 3
- 1
source/modules/rtaudio/RtAudio.cpp
View File
@@ -6681,7 +6681,9 @@ unsigned int RtApiAlsa :: getDeviceCount( void )
nDevices++;
}
nextcard:
snd_ctl_close( handle );
if (result == 0) {
snd_ctl_close( handle );
}
snd_card_next( &card );
}
Write
Preview
Loading…
Cancel
Save