diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-12 14:06:04 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-12 15:18:40 +0100 |
commit | edc6e5015da4d215aaa09bb93060f8cf090cccff (patch) | |
tree | cbce43e7ac3cff2e687e592f009522e57afe3a47 /tests/test-char.c | |
parent | 377b155bde451d5ac545fbdcdfbf6ca17a4228f5 (diff) |
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>
Diffstat (limited to 'tests/test-char.c')
-rw-r--r-- | tests/test-char.c | 2 |
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; |