From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id s7JHVtE7026000 for ; Tue, 19 Aug 2014 13:31:55 -0400 (EDT) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id s7JHVtsB029578; Tue, 19 Aug 2014 13:31:55 -0400 (EDT) Date: Tue, 19 Aug 2014 13:31:55 -0400 (EDT) Message-Id: <201408191731.s7JHVtsB029578@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Do not dereference a NULL pointer if a .Bl macro has no -type, X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Do not dereference a NULL pointer if a .Bl macro has no -type, -width, -offset or -compact arguments whatsoever; this got broken in rev. 1.238. Modified Files: -------------- mdocml: mdoc_validate.c Revision Data ------------- Index: mdoc_validate.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mdoc_validate.c,v retrieving revision 1.244 retrieving revision 1.245 diff -Lmdoc_validate.c -Lmdoc_validate.c -u -p -r1.244 -r1.245 --- mdoc_validate.c +++ mdoc_validate.c @@ -529,7 +529,7 @@ pre_bl(PRE_ARGS) * ones. If we find no list type, we default to LIST_item. */ - wa = n->args->argv; + wa = (n->args == NULL) ? NULL : n->args->argv; mdoclt = MDOC_ARG_MAX; for (i = 0; n->args && i < (int)n->args->argc; i++) { argv = n->args->argv + i; -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv