From ae986902cfc1846881bb4341f33c0e14b495c309 Mon Sep 17 00:00:00 2001 From: okan Date: Wed, 22 Jan 2020 19:58:35 +0000 Subject: add, then use, xvasprintf, checking for appropriate return. --- xmalloc.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'xmalloc.c') diff --git a/xmalloc.c b/xmalloc.c index 21a65d7..ab5719c 100644 --- a/xmalloc.c +++ b/xmalloc.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: xmalloc.c,v 1.15 2015/03/28 23:12:47 okan Exp $ + * $OpenBSD: xmalloc.c,v 1.16 2020/01/22 19:58:35 okan Exp $ */ #include @@ -91,11 +91,20 @@ xasprintf(char **ret, const char *fmt, ...) int i; va_start(ap, fmt); - i = vasprintf(ret, fmt, ap); + i = xvasprintf(ret, fmt, ap); va_end(ap); - if (i < 0 || *ret == NULL) - err(1, "asprintf"); + return(i); +} + +int +xvasprintf(char **ret, const char *fmt, va_list ap) +{ + int i; + + i = vasprintf(ret, fmt, ap); + if (i == -1) + err(1, "vasprintf"); return(i); } -- cgit v1.2.3-2-gb3c3