[libvirt] [PATCH] Fix virbitmaptest on 32-bit

Ján Tomko jtomko at redhat.com
Fri Jun 6 14:53:05 UTC 2014


My commit 7d8afc4 was passing the incorrect size to
virBitmapDataToString in the newly added test.
---
Pushed as a trivial paper-bag build breaker fix.

 tests/virbitmaptest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/virbitmaptest.c b/tests/virbitmaptest.c
index 139b8e2..048946f 100644
--- a/tests/virbitmaptest.c
+++ b/tests/virbitmaptest.c
@@ -313,7 +313,7 @@ test5(const void *v ATTRIBUTE_UNUSED)
     if (STRNEQ(str, "0,9,34"))
         goto error;
     VIR_FREE(str);
-    if (!(str = virBitmapDataToString(data2, sizeof(data2))))
+    if (!(str = virBitmapDataToString(data2, len2)))
         goto error;
     if (STRNEQ(str, "0,2,9,15,34"))
         goto error;
-- 
1.8.3.2




More information about the libvir-list mailing list