From: Keir Fraser Date: Wed, 6 Aug 2008 10:38:42 +0000 (+0100) Subject: ioemu-stubdom: fix initialization of vm_change_state_head X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14165^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ec80656941f426651cf3013ac1a8e5dfb043ad47;p=xen.git ioemu-stubdom: fix initialization of vm_change_state_head That is actually a no-op since it just sets it to NULL again, but makes sense. Signed-off-by: Samuel Thibault --- diff --git a/tools/ioemu/vl.c b/tools/ioemu/vl.c index 129e0d4475..9d526057e4 100644 --- a/tools/ioemu/vl.c +++ b/tools/ioemu/vl.c @@ -7136,8 +7136,10 @@ int main(int argc, char **argv) sigaddset(&set, aio_sig_num); sigprocmask(SIG_BLOCK, &set, NULL); } +#endif QEMU_LIST_INIT (&vm_change_state_head); +#ifndef CONFIG_STUBDOM #ifndef _WIN32 { struct sigaction act;