fix printf("%s", NULL);
authorschwarze <schwarze@openbsd.org>
Tue, 9 Aug 2016 15:08:15 +0000 (15:08 +0000)
committerschwarze <schwarze@openbsd.org>
Tue, 9 Aug 2016 15:08:15 +0000 (15:08 +0000)
found while investigating an unrelated bug report from jsg@

usr.bin/mandoc/main.c
usr.bin/mandoc/mdoc_validate.c

index 45f5c52..c2208c9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.177 2016/08/01 10:32:39 schwarze Exp $ */
+/*     $OpenBSD: main.c,v 1.178 2016/08/09 15:08:15 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2012, 2014-2016 Ingo Schwarze <schwarze@openbsd.org>
@@ -955,7 +955,8 @@ mmsg(enum mandocerr t, enum mandoclevel lvl,
 {
        const char      *mparse_msg;
 
-       fprintf(stderr, "%s: %s:", getprogname(), file);
+       fprintf(stderr, "%s: %s:", getprogname(),
+           file == NULL ? "<stdin>" : file);
 
        if (line)
                fprintf(stderr, "%d:%d:", line, col + 1);
index 3cb6343..41e9920 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mdoc_validate.c,v 1.217 2016/01/08 17:48:04 schwarze Exp $ */
+/*     $OpenBSD: mdoc_validate.c,v 1.218 2016/08/09 15:08:15 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2016 Ingo Schwarze <schwarze@openbsd.org>
@@ -1764,10 +1764,11 @@ post_sh_head(POST_ARGS)
 
        /* The NAME should be first. */
 
-       if (SEC_NAME != sec && SEC_NONE == mdoc->lastnamed)
+       if (sec != SEC_NAME && mdoc->lastnamed == SEC_NONE)
                mandoc_vmsg(MANDOCERR_NAMESEC_FIRST, mdoc->parse,
-                   mdoc->last->line, mdoc->last->pos,
-                   "Sh %s", secnames[sec]);
+                   mdoc->last->line, mdoc->last->pos, "Sh %s",
+                   sec == SEC_CUSTOM ? mdoc->last->child->string :
+                   secnames[sec]);
 
        /* The SYNOPSIS gets special attention in other areas. */