diff options
author | Ryan Libby <rlibby@FreeBSD.org> | 2024-07-09 18:00:33 +0000 |
---|---|---|
committer | Ryan Libby <rlibby@FreeBSD.org> | 2024-07-09 18:00:33 +0000 |
commit | 6bd85498ec2df62aeb8cf9c476daac8a4d9a7a4b (patch) | |
tree | dc464f391f9c1281bcb65d83a21c491cf6427bb8 | |
parent | f0a7df4a6cc9a795680d580fcabd993379e22ae5 (diff) |
bthidd: declare appropriate size bitstring
The bitstring declared on the stack was much too large, and gcc noticed
that we weren't memset()ing all of it. This one was harmless.
Reported by: GCC -Wmemset-elt-size
Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D45900
-rw-r--r-- | usr.sbin/bluetooth/bthidd/kbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bluetooth/bthidd/kbd.c b/usr.sbin/bluetooth/bthidd/kbd.c index a807a9b27dec..51c12d111c37 100644 --- a/usr.sbin/bluetooth/bthidd/kbd.c +++ b/usr.sbin/bluetooth/bthidd/kbd.c @@ -339,7 +339,7 @@ kbd_maxkey(void) int32_t kbd_process_keys(bthid_session_p s) { - bitstr_t diff[bitstr_size(xsize)]; + bitstr_t bit_decl(diff, xsize); int32_t f1, f2, i; assert(s != NULL); |