mirror of
https://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git
synced 2023-10-10 19:16:51 +02:00
Fix bug: AudioExit called without AudioInit crash.
This commit is contained in:
parent
87f7aa63cc
commit
09f62307d4
@ -1,4 +1,8 @@
|
|||||||
User johns
|
User johns
|
||||||
|
Date:
|
||||||
|
|
||||||
|
Fix bug: AudioExit called without AudioInit crash.
|
||||||
|
|
||||||
Date: Thu Jan 19 15:58:40 CET 2012
|
Date: Thu Jan 19 15:58:40 CET 2012
|
||||||
|
|
||||||
Release Version 0.3.5
|
Release Version 0.3.5
|
||||||
|
2
audio.c
2
audio.c
@ -2125,7 +2125,9 @@ void AudioExit(void)
|
|||||||
#ifdef USE_AUDIO_THREAD
|
#ifdef USE_AUDIO_THREAD
|
||||||
AudioExitThread();
|
AudioExitThread();
|
||||||
#endif
|
#endif
|
||||||
|
if ( UsedAudioModule ) {
|
||||||
UsedAudioModule->Exit();
|
UsedAudioModule->Exit();
|
||||||
|
}
|
||||||
#ifdef USE_AUDIORING
|
#ifdef USE_AUDIORING
|
||||||
AudioRingExit();
|
AudioRingExit();
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user