From 323f7c476e381d202eb0978fac30172f7a438e78 Mon Sep 17 00:00:00 2001 From: Martin Kletzander Date: Mon, 21 Aug 2017 08:38:34 +0200 Subject: [PATCH] util: Use virBufferCheckError to its full potential. We can now check for the error and not care about the return value as it will be properly handled in virBufferContentAndReset() anyway. Signed-off-by: Martin Kletzander --- src/util/virbitmap.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/util/virbitmap.c b/src/util/virbitmap.c index a5077fe7c8..57a8fbf82c 100644 --- a/src/util/virbitmap.c +++ b/src/util/virbitmap.c @@ -332,11 +332,7 @@ char *virBitmapString(virBitmapPtr bitmap) bitmap->map[sz]); } - if (virBufferError(&buf)) { - virBufferFreeAndReset(&buf); - return NULL; - } - + virBufferCheckError(&buf); return virBufferContentAndReset(&buf); } -- GitLab