From f001a83522284bc85c1fdc352229e58316ce0e16 Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Mon, 25 May 2015 22:27:14 +0200 Subject: nspawn: make coverity happy Rather than checking the return of asprintf() we are checking if buf gets allocated, make it clear that it is ok to ignore the return value. Fixes CID 1299644. --- src/nspawn/nspawn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nspawn') diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 646edea700..a0eece6ba9 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1026,9 +1026,9 @@ static int tmpfs_patch_options(const char *options, char **ret) { if (arg_userns && arg_uid_shift != 0) { if (options) - asprintf(&buf, "%s,uid=" UID_FMT ",gid=" UID_FMT, options, arg_uid_shift, arg_uid_shift); + (void) asprintf(&buf, "%s,uid=" UID_FMT ",gid=" UID_FMT, options, arg_uid_shift, arg_uid_shift); else - asprintf(&buf, "uid=" UID_FMT ",gid=" UID_FMT, arg_uid_shift, arg_uid_shift); + (void) asprintf(&buf, "uid=" UID_FMT ",gid=" UID_FMT, arg_uid_shift, arg_uid_shift); if (!buf) return -ENOMEM; -- cgit v1.2.3-54-g00ecf