The branch main has been updated by markj:

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

commit c7fcb36f5670b1d6c1f80c3c29d9d2ba374807f7
Author:     Mark Johnston <[email protected]>
AuthorDate: 2021-02-08 14:20:38 +0000
Commit:     Mark Johnston <[email protected]>
CommitDate: 2021-02-08 14:20:38 +0000

    binmiscctl: Avoid segfault with "binmiscctl add" and no extra params
    
    MFC after:      1 week
---
 usr.sbin/binmiscctl/binmiscctl.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/usr.sbin/binmiscctl/binmiscctl.c b/usr.sbin/binmiscctl/binmiscctl.c
index 471f4c2c68dd..3c5e19def67b 100644
--- a/usr.sbin/binmiscctl/binmiscctl.c
+++ b/usr.sbin/binmiscctl/binmiscctl.c
@@ -284,6 +284,8 @@ add_cmd(__unused int argc, char *argv[], 
ximgact_binmisc_entry_t *xbe)
        char *magic = NULL, *mask = NULL;
        int sz;
 
+       if (argc == 0)
+               usage("Required argument missing\n");
        if (strlen(argv[0]) > IBE_NAME_MAX)
                usage("'%s' string length longer than IBE_NAME_MAX (%d)",
                    IBE_NAME_MAX);
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main
To unsubscribe, send any mail to "[email protected]"

Reply via email to