sun: Fix use-after-free of s->mutex in sun_stream_destroy.

This commit is contained in:
Ka Ho Ng 2020-08-08 02:43:55 +08:00 коммит произвёл Matthew Gregan
Родитель bf03cabbd6
Коммит 98253b293c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -362,8 +362,8 @@ sun_stream_stop(cubeb_stream * s)
static void
sun_stream_destroy(cubeb_stream * s)
{
pthread_mutex_destroy(&s->mutex);
sun_stream_stop(s);
pthread_mutex_destroy(&s->mutex);
if (s->play.fd != -1) {
close(s->play.fd);
}