[client] audio/pw: fix memory leak and gracefully shutdown

This commit is contained in:
Geoffrey McRae
2022-01-17 22:10:41 +11:00
parent 54e7542414
commit 5629655f74
2 changed files with 4 additions and 0 deletions

View File

@@ -72,6 +72,9 @@ void audio_free(void)
if (!audio.audioDev)
return;
audio_playbackStop();
audio_recordStop();
audio.audioDev->free();
audio.audioDev = NULL;
}