Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 May 2023 22:02:24 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 9affcf438beb - main - bluetooth/hccontrol: Fix unterminated command list
Message-ID:  <202305042202.344M2OV6095270@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=9affcf438beb43e912e289d1b9f86692d73b0b0a

commit 9affcf438beb43e912e289d1b9f86692d73b0b0a
Author:     Brian Campbell <Brian.Campbell@ed.ac.uk>
AuthorDate: 2023-05-04 22:01:31 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-05-04 22:01:36 +0000

    bluetooth/hccontrol: Fix unterminated command list
    
    Signed-off-by: Brian Campbell <Brian.Campbell@ed.ac.uk>
    Reviewed by: imp
    Pull Request: https://github.com/freebsd/freebsd-src/pull/730
---
 usr.sbin/bluetooth/hccontrol/le.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/usr.sbin/bluetooth/hccontrol/le.c b/usr.sbin/bluetooth/hccontrol/le.c
index 6f768619e9d3..c8ae335fcbe0 100644
--- a/usr.sbin/bluetooth/hccontrol/le.c
+++ b/usr.sbin/bluetooth/hccontrol/le.c
@@ -1365,4 +1365,7 @@ struct hci_command le_commands[] = {
 	  "Generate 64 bits of random data",
 	  &le_rand
   },
+  {
+	  NULL,
+  }
 };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202305042202.344M2OV6095270>