git: d59058f3b313 - main - sound: Make SNDST_UNVLBUF_MAX a power of two
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 20 May 2024 17:41:25 UTC
The branch main has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=d59058f3b31353442497e728dd5beb80585ad8d2
commit d59058f3b31353442497e728dd5beb80585ad8d2
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2024-05-20 17:41:18 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2024-05-20 17:41:18 +0000
sound: Make SNDST_UNVLBUF_MAX a power of two
Fixes: 074d337ad618 ("sound: Check user-supplied size passed to SNDSTIOC_ADD_USER_DEVS*")
Reported by: markj
Sponsored by: The FreeBSD Foundation
MFC after: 1 day
Reviewed by: markj
Differential Revision: https://reviews.freebsd.org/D45277
---
sys/sys/sndstat.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/sys/sndstat.h b/sys/sys/sndstat.h
index 8a49042b0453..e0e403b1a72a 100644
--- a/sys/sys/sndstat.h
+++ b/sys/sys/sndstat.h
@@ -77,7 +77,7 @@ struct sndstioc_nv_arg {
/*
* Maximum user-specified nvlist buffer size
*/
-#define SNDST_UNVLBUF_MAX 65535
+#define SNDST_UNVLBUF_MAX 65536
#define SNDSTIOC_REFRESH_DEVS \
_IO('D', 100)