summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/audio/audio.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/dev/audio/audio.c b/sys/dev/audio/audio.c
index 22ffe4c6ef1..cc462b0b429 100644
--- a/sys/dev/audio/audio.c
+++ b/sys/dev/audio/audio.c
@@ -1,4 +1,4 @@
-/* $NetBSD: audio.c,v 1.56 2020/02/23 07:17:01 isaki Exp $ */
+/* $NetBSD: audio.c,v 1.57 2020/02/29 07:13:37 isaki Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -142,7 +142,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.56 2020/02/23 07:17:01 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.57 2020/02/29 07:13:37 isaki Exp $");
#ifdef _KERNEL_OPT
#include "audio.h"
@@ -1956,6 +1956,11 @@ audiobellclose(audio_file_t *file)
error = audio_close(sc, file);
audio_file_exit(sc, &sc_ref);
+
+ KASSERT(file->ptrack);
+ audio_track_destroy(file->ptrack);
+ KASSERT(file->rtrack == NULL);
+ kmem_free(file, sizeof(*file));
return error;
}