We don't need to INCLUDENUL, so turn it off to avoid assertion...

sbuf_new_for_sysctl turns on INCLUDENUL, but we don't need it. And we assert for
it in the new bus_pnpinfo_sb and bus_location_sb strings.
This commit is contained in:
Warner Losh 2020-08-29 11:46:50 +00:00
parent b46b3ba72c
commit f6c941f347
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=364953

View File

@ -265,6 +265,7 @@ device_sysctl_handler(SYSCTL_HANDLER_ARGS)
int error;
sbuf_new_for_sysctl(&sb, NULL, 1024, req);
sbuf_clear_flags(&sb, SBUF_INCLUDENUL);
switch (arg2) {
case DEVICE_SYSCTL_DESC:
sbuf_cat(&sb, dev->desc ? dev->desc : "");