Silence some warnings about uninitialized variables

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5362 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
blueswir1 2008-09-30 18:16:09 +00:00
parent 223f0d72a8
commit 98448f58c1
3 changed files with 6 additions and 3 deletions

4
vl.c
View file

@ -7831,8 +7831,10 @@ static int main_loop(void)
timeout = 0;
}
} else {
if (shutdown_requested)
if (shutdown_requested) {
ret = EXCP_INTERRUPT;
break;
}
timeout = 10;
}
#ifdef CONFIG_PROFILER