summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2019-03-12 14:06:04 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2019-03-12 15:18:40 +0100
commitedc6e5015da4d215aaa09bb93060f8cf090cccff (patch)
treecbce43e7ac3cff2e687e592f009522e57afe3a47
parent377b155bde451d5ac545fbdcdfbf6ca17a4228f5 (diff)
downloadfocaccia-qemu-edc6e5015da4d215aaa09bb93060f8cf090cccff.tar.gz
focaccia-qemu-edc6e5015da4d215aaa09bb93060f8cf090cccff.zip
test-char: fix undefined behavior
Fixes the following failure with --enable-debug:

/tmp/qemu-test/src/tests/test-char.c:838:10: runtime error: load of value 40, which is not a valid value for type bool
SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior /tmp/qemu-test/src/tests/test-char.c:838:10 in

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--tests/test-char.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-char.c b/tests/test-char.c
index de328380c1..95ccfd3cdb 100644
--- a/tests/test-char.c
+++ b/tests/test-char.c
@@ -745,7 +745,7 @@ static void char_socket_server_test(gconstpointer opaque)
     Visitor *v;
     QemuThread thread;
     int ret;
-    bool reconnected;
+    bool reconnected = false;
     char *optstr;
     QemuOpts *opts;