Re: [PATCH 1/2] xen: avoid use of uninitialized variable

2014-03-19 Thread Samuel Thibault
Hello, Justus Winter, le Wed 19 Mar 2014 16:13:12 +0100, a écrit : > Found using the Clang Static Analyzer. > > * xen/console.c (hypputc): Initialize variable "complain". This was actually meant to be static, now fixed. Thanks, Samuel > --- > xen/console.c | 2 +- > 1 file changed, 1 insertion

[PATCH 1/2] xen: avoid use of uninitialized variable

2014-03-19 Thread Justus Winter
Found using the Clang Static Analyzer. * xen/console.c (hypputc): Initialize variable "complain". --- xen/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/console.c b/xen/console.c index 884376f..cb330b5 100644 --- a/xen/console.c +++ b/xen/console.c @@ -47,7 +47,