[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH v2 04/10] tools/libxl: Fix uninitialised variable in libxl__domain_get_device_model_uid()
Andrew Cooper writes ("[PATCH v2 04/10] tools/libxl: Fix uninitialised variable in libxl__domain_get_device_model_uid()"): > Various version of gcc, when compiling with -Og, complain: > > libxl_dm.c: In function 'libxl__domain_get_device_model_uid': > libxl_dm.c:256:12: error: 'kill_by_uid' may be used uninitialized in this > function [-Werror=maybe-uninitialized] > 256 | if (kill_by_uid) ... > @@ -176,7 +176,6 @@ static int libxl__domain_get_device_model_uid(libxl__gc > *gc, > LOGD(DEBUG, guest_domid, > "dm_restrict disabled, starting QEMU as root"); > user = NULL; /* Should already be null, but just in case */ > - kill_by_uid = false; /* Keep older versions of gcc happy */ > rc = 0; > goto out; Uhhhhh. I think this and the other one seem to be stray hunks which each introduce a new uninitialised variable bug ? Isn.
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |