OSDN Git Service

libvhost-user: replace vasprintf() to fix build
authorFelipe Franciosi <felipe@nutanix.com>
Thu, 2 Mar 2017 18:25:50 +0000 (10:25 -0800)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 5 May 2017 10:10:00 +0000 (12:10 +0200)
On gcc 3.4 and newer, simply using (void) in front of WUR functions is
not sufficient to ignore the return value. That prevents a build when
handling warnings as errors.

libvhost-user had a usage of (void)vasprintf() which triggered such a
condition. This fixes it by replacing this call with g_strdup_vprintf()
which aborts on OOM.

Signed-off-by: Felipe Franciosi <felipe@nutanix.com>
Message-Id: <1488479153-21203-2-git-send-email-felipe@nutanix.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
contrib/libvhost-user/libvhost-user.c

index af4faad..61e1657 100644 (file)
@@ -81,7 +81,7 @@ vu_panic(VuDev *dev, const char *msg, ...)
     va_list ap;
 
     va_start(ap, msg);
-    (void)vasprintf(&buf, msg, ap);
+    buf = g_strdup_vprintf(msg, ap);
     va_end(ap);
 
     dev->broken = true;