summaryrefslogtreecommitdiffstats
path: root/argv.c
diff options
context:
space:
mode:
Diffstat (limited to 'argv.c')
-rw-r--r--argv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/argv.c b/argv.c
index 3d8519c7..b73787dc 100644
--- a/argv.c
+++ b/argv.c
@@ -765,8 +765,8 @@ argv_multi(struct mdoc *mdoc, int line,
if (0 == v->sz % MULTI_STEP)
v->value = xrealloc(v->value,
(v->sz + MULTI_STEP) * sizeof(char *));
-
- v->value[(int)v->sz] = xstrdup(p);
+ if (NULL == (v->value[(int)v->sz] = strdup(p)))
+ err(1, "strdup");
}
if (v->sz)