From 9e1962924d277421ea2bce83eed6738227fc0b54 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Mon, 23 Mar 2009 14:31:58 +0000 Subject: Linux fixes. --- argv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'argv.c') diff --git a/argv.c b/argv.c index db5b7ea4..bf2d3fc6 100644 --- a/argv.c +++ b/argv.c @@ -1,4 +1,4 @@ -/* $Id: argv.c,v 1.56 2009/03/23 14:22:11 kristaps Exp $ */ +/* $Id: argv.c,v 1.57 2009/03/23 14:31:58 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -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) -- cgit v1.2.3-56-ge451