]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
image-fuzzer: Write bytes instead of string to image file
authorEduardo Habkost <ehabkost@redhat.com>
Wed, 16 Oct 2019 19:24:22 +0000 (16:24 -0300)
committerStefan Hajnoczi <stefanha@redhat.com>
Tue, 5 Nov 2019 15:35:06 +0000 (16:35 +0100)
This is necessary for Python 3 compatibility.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20191016192430.25098-3-ehabkost@redhat.com
Message-Id: <20191016192430.25098-3-ehabkost@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
tests/image-fuzzer/qcow2/layout.py

index c57418fa15f12316612482c4dc62bb30e1b3fc3d..fe273d414323bd10ae81f63c0d440b5d93947629 100644 (file)
@@ -518,7 +518,7 @@ class Image(object):
         rounded = (size + self.cluster_size - 1) & ~(self.cluster_size - 1)
         if rounded > size:
             image_file.seek(rounded - 1)
-            image_file.write("\0")
+            image_file.write(b'\x00')
         image_file.close()
 
     @staticmethod