All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] Build broken
@ 2011-08-05  6:22 malc
  2011-08-05  7:29 ` Kevin Wolf
  2011-08-05  8:58 ` Stefan Hajnoczi
  0 siblings, 2 replies; 10+ messages in thread
From: malc @ 2011-08-05  6:22 UTC (permalink / raw)
  To: qemu-devel, kwolf


/home/malc/x/rcs/git/qemuorg/coroutine-ucontext.c: In function 'coroutine_new':
/home/malc/x/rcs/git/qemuorg/coroutine-ucontext.c:160:16: error: 'arg.i[1]' may be used uninitialized in this function
/home/malc/x/rcs/git/qemuorg/coroutine-ucontext.c:136:18: note: 'arg.i[1]' was declared here

diff --git a/coroutine-ucontext.c b/coroutine-ucontext.c
index 41c2379..42dc3e2 100644
--- a/coroutine-ucontext.c
+++ b/coroutine-ucontext.c
@@ -133,7 +133,7 @@ static Coroutine *coroutine_new(void)
     CoroutineUContext *co;
     ucontext_t old_uc, uc;
     jmp_buf old_env;
-    union cc_arg arg;
+    union cc_arg arg = {0};
 
     /* The ucontext functions preserve signal masks which incurs a system call
      * overhead.  setjmp()/longjmp() does not preserve signal masks but only

I guess gcc should yell not only here on ppc32 but on any machine where
pointer size is less than the size of two ints.

-- 
mailto:av1474@comtv.ru

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2011-08-08 10:41 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-05  6:22 [Qemu-devel] Build broken malc
2011-08-05  7:29 ` Kevin Wolf
2011-08-05  8:48   ` Stefan Hajnoczi
2011-08-05  9:09     ` Kevin Wolf
2011-08-05  9:37       ` Stefan Hajnoczi
2011-08-05  8:58 ` Stefan Hajnoczi
2011-08-05 16:49   ` malc
2011-08-06  6:12     ` Stefan Hajnoczi
2011-08-08  8:02     ` Kevin Wolf
2011-08-08 10:40       ` malc

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.